Server for advanced AI-driven video editing, semantic search, multilingual transcription, generative media, voice cloning, and content moderation.
To add the MCP server in any config driven MCP Client, following is how the commands and arguments will look like
uv
We need to install uv first.
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"
You can also visit the installation steps of uv
for more details here
You can run the MCP server using uvx
using the following command
uvx videodb-director-mcp --api-key=VIDEODB_API_KEY
To configure VideoDB Director MCP server in Claude, you can run the following command
uvx videodb-director-mcp --install=claude
You can manually configure the MCP Server by following these steps:
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
Add the VideoDB Director MCP Server inside the mcpServers
key:
{
"mcpServers": {
"videodb-director": {
"command": "uvx",
"args": ["videodb-director-mcp", "--api-key=<VIDEODB-API-KEY>"]
}
}
}
To configure VideoDB Director MCP server in Cursor, you can run the following command
uvx videodb-director-mcp --install=cursor
You can manually configure the MCP Server by following these steps:
Inside Cursor, go to Settings > Cursor Settings
Click on MCP
Click on Add new Global MCP Server
Add the VideoDB Director MCP Server under the mcpServers
key
{
"mcpServers": {
"videodb-director": {
"command": "uvx",
"args": ["videodb-director-mcp", "--api-key=<VIDEODB-API-KEY>"]
}
}
}
You can configure VideoDB Director MCP server in Claude and Cursor together, by running the following command
uvx videodb-director-mcp --install=all
claude mcp add videodb-director uvx -- videodb-director-mcp --api-key=<VIDEODB_API_KEY>
To ensure you're using the latest version of the MCP server with uvx
, start by clearing the cache:
uv cache clean
This command removes any outdated cached packages of videodb-director-mcp
, allowing uvx
to fetch the most recent version.
If you always want to use the latest version of the MCP server, update your command as follows:
uvx videodb-director-mcp@latest --api-key=<VIDEODB_API_KEY>
Deploy a remote MCP server without authentication on Cloudflare Workers.
A lightweight, file-based server for managing and serving prompts via stdio.
An MCP server that allows AI assistants to interact with Ansible Automation Platform (AAP) and Event-Driven Ansible (EDA) infrastructure.
Access Composers' Desktop Project (CDP) sound transformation programs. Requires a separate CDP installation.
Check if an account or password has been compromised in a data breach using the Have I Been Pwned API.
A modular trading automation project using the Zerodha Kite Connect API for tool-based and resource-based automation.
Execute terminal commands for malware analysis. Requires Node.js 18 or higher.
An example of a remote MCP server deployable on Cloudflare Workers without authentication.
An example of deploying a remote MCP server on Cloudflare Workers without authentication.
An implementation of the Model Context Protocol (MCP) for communication between AI models and external tools, featuring server and client examples in Python and Spring Boot.