What is the io.github.avclabs/enhance-mcp MCP server?
HTTP MCP Client-Server for video enhancement API
How to install io.github.avclabs/enhance-mcp
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
HTTP_API_KEYrequiredsecretYour API key for the service
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"enhance-mcp": {
"command": "npx",
"args": [
"-y",
"@avclabs.ai/enhance-mcp"
],
"env": {
"HTTP_API_KEY": "<YOUR_HTTP_API_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"enhance-mcp": {
"command": "npx",
"args": [
"-y",
"@avclabs.ai/enhance-mcp"
],
"env": {
"HTTP_API_KEY": "<YOUR_HTTP_API_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"enhance-mcp": {
"command": "npx",
"args": [
"-y",
"@avclabs.ai/enhance-mcp"
],
"env": {
"HTTP_API_KEY": "<YOUR_HTTP_API_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"enhance-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@avclabs.ai/enhance-mcp"
],
"env": {
"HTTP_API_KEY": "<YOUR_HTTP_API_KEY>"
}
}
}
}Claude Code
claude mcp add enhance-mcp --env HTTP_API_KEY=<YOUR_HTTP_API_KEY> -- npx -y @avclabs.ai/enhance-mcp