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>