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>