@avclabs.ai/media-mcp
Node.js >=18 · MIT License
Release statusnpm latest is 0.2.1 with 3 video tools and 2 SAM3 tools. The repository's 4 image tools are an unreleased 0.3.0 candidate and are not production-ready yet.
Manual Install
No installation needed, run directly via npx in your MCP client configuration.
1. Claude Code (CLI)
Run in Claude Code:
bash
/mcpFind the config file path from "User MCPs" in the output, then edit that file.
Common paths (if /mcp is not available):
Windows:
%USERPROFILE%\.claude.jsonmacOS:
~/.claude.jsonLinux:
~/.claude.jsonLegacy/Alternative:
~/.claude/mcp.jsonPaste the following (replace your-api-key with your actual API Key):
json
{
"mcpServers": {
"video-enhancement": {
"command": "npx",
"args": ["-y", "@avclabs.ai/media-mcp@latest"],
"env": {
"API_KEY": "your-api-key"
}
}
}
}Save and run /mcp to verify it loads successfully.
2. Cursor
Settings > Tools & MCPs > Add New MCP Server
- Name:
video-enhancement - Type:
command - Command:
env API_KEY=your-api-key npx -y @avclabs.ai/media-mcp
Or edit ~/.cursor/mcp.json:
json
{
"mcpServers": {
"video-enhancement": {
"command": "npx",
"args": ["-y", "@avclabs.ai/media-mcp@latest"],
"env": {
"API_KEY": "your-api-key"
}
}
}
}Global Install (Optional)
If you don't want to use npx every time:
bash
npm install -g @avclabs.ai/media-mcpThen use "command": "avclabs-media-mcp" with "args": ["--api-key", "your-api-key"] in the configuration.
json
{
"mcpServers": {
"video-enhancement": {
"command": "avclabs-media-mcp",
"args": ["--api-key", "your-api-key"]
}
}
}