VideoDB

官方

專為先進AI驅動影片編輯、語意搜尋、多語言轉錄、生成式媒體、語音克隆及內容審核設計的伺服器。

你可以用 Video DB MCP 做什麼?

  • 搜尋您的影片庫 — 使用自然語言提問,透過 search_video 尋找特定時刻或場景。
  • 取得影片元資料 — 使用 get_video 取得任何已上傳影片的結構化詳細資訊,如標題、長度與格式。
  • 以程式方式上傳影片 — 透過 URL 或檔案路徑,使用 upload_video 將新影片內容新增至您的影片庫。

文件

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>