proxyllm mcp for VS Code
ai.proxyllm/proxyllm-mcp
OpenAI-compatible LLM gateway: models, savings math, key provisioning, autonomous email-OTP signup
client:VS Code
transport:stdio
runtime:npm
Install proxyllm mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "proxyllm-account-token",
"description": "PROXYLLM_ACCOUNT_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "proxyllm-routing-key",
"description": "PROXYLLM_ROUTING_KEY",
"password": true
}
],
"servers": {
"proxyllm-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"proxyllm-mcp"
],
"env": {
"PROXYLLM_ACCOUNT_TOKEN": "${input:proxyllm-account-token}",
"PROXYLLM_ROUTING_KEY": "${input:proxyllm-routing-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs