Vox MCP for VS Code
io.github.linxule/vox-mcp
Multi-model AI gateway — 8 providers plus local models, no system prompt injection.
client:VS Code
transport:stdio
runtime:pypi
Install Vox MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "gemini-api-key",
"description": "GEMINI_API_KEY",
"password": true
},
{
"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": "xai-api-key",
"description": "XAI_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "deepseek-api-key",
"description": "DEEPSEEK_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "moonshot-api-key",
"description": "MOONSHOT_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "openrouter-api-key",
"description": "OPENROUTER_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "custom-api-url",
"description": "CUSTOM_API_URL",
"password": true
}
],
"servers": {
"vox-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"vox-mcp"
],
"env": {
"GEMINI_API_KEY": "${input:gemini-api-key}",
"OPENAI_API_KEY": "${input:openai-api-key}",
"ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
"XAI_API_KEY": "${input:xai-api-key}",
"DEEPSEEK_API_KEY": "${input:deepseek-api-key}",
"MOONSHOT_API_KEY": "${input:moonshot-api-key}",
"OPENROUTER_API_KEY": "${input:openrouter-api-key}",
"CUSTOM_API_URL": "${input:custom-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs