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

คุณสามารถรันเซิร์ฟเวอร์ MCP โดยใช้ uvx ด้วยคำสั่งต่อไปนี้

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

เพิ่ม VideoDB Director MCP Server ในไคลเอนต์ที่คุณชื่นชอบ

Claude Desktop

ในการกำหนดค่า VideoDB Director MCP server ใน Claude คุณสามารถรันคำสั่งต่อไปนี้

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

ในการกำหนดค่า VideoDB Director MCP server ใน Cursor คุณสามารถรันคำสั่งต่อไปนี้

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 พร้อมกัน

คุณสามารถกำหนดค่า VideoDB Director MCP server ใน Claude และ Cursor ร่วมกันได้ โดยรันคำสั่งต่อไปนี้

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

เพื่อให้แน่ใจว่าคุณใช้เซิร์ฟเวอร์ MCP เวอร์ชันล่าสุดกับ uvx ให้เริ่มด้วยการล้างแคช:

uv cache clean

คำสั่งนี้จะลบแพ็คเกจที่แคชไว้ซึ่งล้าสมัยของ videodb-director-mcp ออก ทำให้ uvx สามารถดึงเวอร์ชันล่าสุดมาใช้ได้

หากคุณต้องการใช้เซิร์ฟเวอร์ MCP เวอร์ชันล่าสุดเสมอ ให้อัปเดตคำสั่งของคุณดังนี้:

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