VideoDB MCP Server

chính thức

Máy chủ cho chỉnh sửa video nâng cao bằng AI, tìm kiếm ngữ nghĩa, phiên âm đa ngôn ngữ, phương tiện tạo sinh, nhân bản giọng nói và kiểm duyệt nội dung.

Tài liệu

smithery badge

Để thêm máy chủ MCP vào bất kỳ ứng dụng MCP Client nào được điều khiển bằng cấu hình, dưới đây là cách các lệnh và đối số sẽ trông như thế nào

Cài đặt uv

Trước tiên chúng ta cần cài đặt uv.

Đối với macOS/Linux:

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

Đối với Windows:

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

Bạn cũng có thể xem các bước cài đặt uv để biết thêm chi tiết tại đây

Chạy Máy chủ MCP

Bạn có thể chạy máy chủ MCP bằng uvx với lệnh sau

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

Thêm Máy chủ MCP VideoDB Director vào ứng dụng Client yêu thích của bạn

Claude Desktop

Để cấu hình máy chủ MCP VideoDB Director trong Claude, bạn có thể chạy lệnh sau

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

Để cấu hình máy chủ MCP VideoDB Director trong Cursor, bạn có thể chạy lệnh sau

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>"]
        }
      }
    }
    

Cài đặt đồng thời trong Claude và Cursor

Bạn có thể cấu hình máy chủ MCP VideoDB Director trong cả Claude và Cursor cùng lúc, bằng cách chạy lệnh sau

uvx videodb-director-mcp --install=all

Cài đặt cho Claude Code

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

Cập nhật gói MCP VideoDB Director

Để đảm bảo bạn đang sử dụng phiên bản mới nhất của máy chủ MCP với uvx, hãy bắt đầu bằng cách xóa bộ nhớ đệm:

uv cache clean

Lệnh này xóa mọi gói đã lưu trong bộ nhớ đệm đã lỗi thời của videodb-director-mcp, cho phép uvx tải về phiên bản mới nhất.

Nếu bạn luôn muốn sử dụng phiên bản mới nhất của máy chủ MCP, hãy cập nhật lệnh của bạn như sau:

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