Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"video-enhancement": {
"env": {
"API_KEY": "your-api-key"
},
"args": [
"-y",
"@avclabs.ai/media-mcp@latest"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
English | 中文
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@avclabs.ai/media-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @avclabs.ai/media-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Pi Coding Agent extension (CLI-first) — routes bash/read/grep/find/ls through lean-ctx CLI for strong token savings. Optional MCP bridge can register advanced tools.
Autonomous spec-to-product coding-agent CLI with an MCP server exposing 34 tools over stdio.
Compress tool outputs, logs, files, and RAG chunks before they reach the LLM. 60-95% fewer tokens, same answers. Library, proxy, MCP server.
97% token reduction for AI coding sessions — zero deps, 21 languages, MCP server
MCP Security Weekly
Get CVE alerts and security updates for io.github.avclabs/media-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
English | 中文
A video enhancement, image enhancement/colorization/denoising, and image segmentation service based on the MCP protocol, acting as an MCP Client-Server to interact with backend HTTP Servers.
Provides the following MCP Tools:
Video Enhancement
create_task - Create a video enhancement task (supports URL or local file upload)get_task_status - Query task statusenhance_video_sync - Synchronously enhance video (blocking wait, truncated at ~50s by default)Image Enhancement
enhance_image_sync - Enhance image quality and optimize faces (supports URL or local file upload)colorize_image_sync - Colorize black-and-white photos (supports URL or local file upload)denoise_image_sync - Remove noise from images (supports URL or local file upload)get_image_task_status - Query image task status (for polling after sync timeout)Image Segmentation (SAM3)
sam3_predict - SAM3 image segmentation (supports local path, URL, or Base64 image)get_sam3_task_status - Query SAM3 task status (for polling after sync timeout)node --version)If your AI Agent has a known MCP config path, just copy the line below and send it to your AI:
Install the npm package @avclabs.ai/media-mcp as an MCP server. My API Key is: sk-xxxxxxxx.
The AI will automatically:
No installation needed. Use npx directly in your MCP client config.
Run in Claude Code:
/mcp
Check the output for the "User MCPs" section to find the config file path, then edit that file.
Common paths (if /mcp is unavailable):
%USERPROFILE%\.claude.json~/.claude.json~/.claude.json~/.claude/mcp.jsonPaste this (replace your-api-key):
{
"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's loaded.
Go to Settings > Tools & MCPs > Add New MCP Server:
video-enhancementcommandenv API_KEY=your-api-key npx -y @avclabs.ai/media-mcp@latest
Or edit ~/.cursor/mcp.json:
{
"mcpServers": {
"video-enhancement": {
"command": "npx",
"args": ["-y", "@avclabs.ai/media-mcp@latest"],
"env": {
"API_KEY": "your-api-key"
}
}
}
}
After restarting your client, check if the tools are available:
create_task, get_task_status, enhance_video_sync, enhance_image_sync, colorize_image_sync, denoise_image_sync, get_image_task_status, sam3_predict, get_sam3_task_status| Variable | Required | Default | Description |
|---|---|---|---|
API_KEY | Yes | - | API authentication key (shared by video enhancement and SAM3) |
HTTP_API_BASE_URL | No | https://mcp.avc.ai/enhance | Video enhancement service endpoint |
SAM3_API_BASE_URL | No | https://mcp.avc.ai/sam | SAM3 service endpoint |
SAM3_POLL_INTERVAL | No | 2000 | SAM3 polling interval (milliseconds) |
| `SAM3_POLL_MAX_ATTEMPTS |