VideoDB MCP Server

公式

高度なAI駆動の動画編集、セマンティック検索、多言語文字起こし、生成メディア、音声クローン、コンテンツモデレーションのためのサーバー。

ドキュメント

smithery badge

設定駆動型のMCPクライアントにMCPサーバーを追加するには、以下のようにコマンドと引数を指定します。

uv のインストール

最初に uv をインストールする必要があります。

macOS/Linux の場合:

curl -LsSf https://astral.sh/uv/install.sh | sh

Windows の場合:

powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

uv のインストール手順の詳細については、こちら もご覧ください。

MCPサーバーの実行

以下のコマンドを使用して、uvx でMCPサーバーを実行できます。

uvx videodb-director-mcp --api-key=VIDEODB_API_KEY

お好みのクライアントに VideoDB Director MCP サーバーを追加する

Claude Desktop

Claude で VideoDB Director MCP サーバーを設定するには、以下のコマンドを実行します。

uvx videodb-director-mcp --install=claude

You can manually configure the MCP Server by following these steps:

  1. Open the claude_desktop_config.json file

    In MacOS/Linux:

    code ~/Library/Application\ Support/Claude/claude_desktop_config.json
    

    In Windows:

    code $env:AppData\Claude\claude_desktop_config.json
    
  2. Add the VideoDB Director MCP Server inside the mcpServers key:

    {
      "mcpServers": {
        "videodb-director": {
          "command": "uvx",
          "args": ["videodb-director-mcp", "--api-key=<VIDEODB-API-KEY>"]
        }
      }
    }
    

Cursor

Cursor で VideoDB Director MCP サーバーを設定するには、以下のコマンドを実行します。

uvx videodb-director-mcp --install=cursor

You can manually configure the MCP Server by following these steps:

  1. Inside Cursor, go to Settings > Cursor Settings

  2. Click on MCP

  3. Click on Add new Global MCP Server

  4. Add the VideoDB Director MCP Server under the mcpServers key

    {
      "mcpServers": {
        "videodb-director": {
          "command": "uvx",
          "args": ["videodb-director-mcp", "--api-key=<VIDEODB-API-KEY>"]
        }
      }
    }
    

Claude と Cursor に同時にインストールする

以下のコマンドを実行することで、Claude と Cursor の両方に VideoDB Director MCP サーバーを設定できます。

uvx videodb-director-mcp --install=all

Claude Code にインストールする

claude mcp add videodb-director uvx -- videodb-director-mcp --api-key=<VIDEODB_API_KEY>

VideoDB Director MCP パッケージの更新

uvx でMCPサーバーの最新バージョンを使用していることを確認するには、まずキャッシュをクリアします。

uv cache clean

このコマンドは、videodb-director-mcp の古いキャッシュパッケージを削除し、uvx が最新バージョンを取得できるようにします。

常にMCPサーバーの最新バージョンを使用したい場合は、コマンドを次のように更新してください。

uvx videodb-director-mcp@latest --api-key=<VIDEODB_API_KEY>