VideoDB MCP server

Bridges to VideoDB's video processing capabilities for searching, indexing, subtitling, and manipulating video content through specialized context resources.
Back to servers
Setup instructions
Provider
VideoDB
Release date
Mar 19, 2025
Language
Python
Package
Stats
3.2K downloads
31 stars

The VideoDB Director MCP Server allows you to integrate video capabilities into AI tools like Claude Desktop and Cursor, using the Model Context Protocol. It provides video searching, analysis, and summarization functionality to enhance your AI workflows.

Installation

Installing UV Package Manager

Before installing the MCP server, you need to install the UV package manager:

For macOS/Linux:

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

For Windows:

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

For additional installation options, visit the UV installation documentation.

Running the MCP Server

Once UV is installed, you can run the VideoDB Director MCP server using:

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

Replace VIDEODB_API_KEY with your actual API key.

Configuring with AI Assistants

Claude Desktop Integration

Automatic Installation:

uvx videodb-director-mcp --install=claude

Manual Configuration:

  1. Open the Claude configuration file:

    MacOS/Linux:

    code ~/Library/Application\ Support/Claude/claude_desktop_config.json
    

    Windows:

    code $env:AppData\Claude\claude_desktop_config.json
    
  2. Add the MCP server configuration to the mcpServers section:

    {
      "mcpServers": {
        "videodb-director": {
          "command": "uvx",
          "args": ["videodb-director-mcp", "--api-key=<VIDEODB-API-KEY>"]
        }
      }
    }
    

Cursor Integration

Automatic Installation:

uvx videodb-director-mcp --install=cursor

Manual Configuration:

  1. In Cursor, navigate to Settings > Cursor Settings
  2. Click on MCP
  3. Click on Add new Global MCP Server
  4. Add the configuration:
    {
      "mcpServers": {
        "videodb-director": {
          "command": "uvx",
          "args": ["videodb-director-mcp", "--api-key=<VIDEODB-API-KEY>"]
        }
      }
    }
    

Claude Code Integration

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

Multi-Platform Installation

To install for both Claude and Cursor simultaneously:

uvx videodb-director-mcp --install=all

Updating the MCP Server

To ensure you're using the latest version:

  1. Clear the cache first:

    uv cache clean
    
  2. Run the server with the latest version tag:

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

How to install this MCP server

For Claude Code

To add this MCP server to Claude Code, run this command in your terminal:

claude mcp add-json "videodb-director" '{"command":"uvx","args":["videodb-director-mcp","--api-key=<VIDEODB-API-KEY>"]}'

See the official Claude Code MCP documentation for more details.

For Cursor

There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.

If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.

Adding an MCP server to Cursor globally

To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".

When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:

{
    "mcpServers": {
        "videodb-director": {
            "command": "uvx",
            "args": [
                "videodb-director-mcp",
                "--api-key=<VIDEODB-API-KEY>"
            ]
        }
    }
}

Adding an MCP server to a project

To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.

How to use the MCP server

Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.

The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.

You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.

For Claude Desktop

To add this MCP server to Claude Desktop:

1. Find your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

2. Add this to your configuration file:

{
    "mcpServers": {
        "videodb-director": {
            "command": "uvx",
            "args": [
                "videodb-director-mcp",
                "--api-key=<VIDEODB-API-KEY>"
            ]
        }
    }
}

3. Restart Claude Desktop for the changes to take effect

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later