Multi-MCP for VS Code
io.github.religa/multi-mcp
Multi-model AI orchestration MCP server with code review, compare, and debate tools.
client:VS Code
transport:stdio
runtime:pypi
Install Multi-MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "openai-api-key",
"description": "OPENAI_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "anthropic-api-key",
"description": "ANTHROPIC_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "gemini-api-key",
"description": "GEMINI_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "openrouter-api-key",
"description": "OPENROUTER_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "default-model",
"description": "DEFAULT_MODEL",
"password": true
},
{
"type": "promptString",
"id": "default-model-list",
"description": "DEFAULT_MODEL_LIST",
"password": true
}
],
"servers": {
"multi-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"multi-mcp"
],
"env": {
"OPENAI_API_KEY": "${input:openai-api-key}",
"ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
"GEMINI_API_KEY": "${input:gemini-api-key}",
"OPENROUTER_API_KEY": "${input:openrouter-api-key}",
"DEFAULT_MODEL": "${input:default-model}",
"DEFAULT_MODEL_LIST": "${input:default-model-list}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs