MCP Server
Active
MIT
io.github.avclabs/media-mcp MCP Server
io.github.avclabs/media-mcp
What is the io.github.avclabs/media-mcp MCP server?
MCP Server for video enhancement and image segmentation (SAM3)
How to install io.github.avclabs/media-mcp
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
API_KEYrequiredsecretAPI Key for video enhancement and SAM3 services
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"media-mcp": {
"command": "npx",
"args": [
"-y",
"@avclabs.ai/media-mcp"
],
"env": {
"API_KEY": "<YOUR_API_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"media-mcp": {
"command": "npx",
"args": [
"-y",
"@avclabs.ai/media-mcp"
],
"env": {
"API_KEY": "<YOUR_API_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"media-mcp": {
"command": "npx",
"args": [
"-y",
"@avclabs.ai/media-mcp"
],
"env": {
"API_KEY": "<YOUR_API_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"media-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@avclabs.ai/media-mcp"
],
"env": {
"API_KEY": "<YOUR_API_KEY>"
}
}
}
}Claude Code
claude mcp add media-mcp --env API_KEY=<YOUR_API_KEY> -- npx -y @avclabs.ai/media-mcp