mcp gateway for VS Code
io.github.rupinder2/mcp-gateway
Aggregates tools from multiple MCP servers with unified BM25/regex search and deferred loading.
client:VS Code
transport:stdio
runtime:pypi
Install mcp gateway in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "storage-backend",
"description": "STORAGE_BACKEND",
"password": true
},
{
"type": "promptString",
"id": "redis-url",
"description": "REDIS_URL",
"password": true
},
{
"type": "promptString",
"id": "server-config-path",
"description": "SERVER_CONFIG_PATH",
"password": true
}
],
"servers": {
"mcp-gateway": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-orchestration-gateway"
],
"env": {
"STORAGE_BACKEND": "${input:storage-backend}",
"REDIS_URL": "${input:redis-url}",
"SERVER_CONFIG_PATH": "${input:server-config-path}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs