Skip to content
VS Code

oroute for VS Code

io.github.netclaus/oroute

Auto-route AI requests to 13 models (Claude, GPT, Gemini, Qwen, DeepSeek). 57% cost savings.

client:VS Code transport:stdio runtime:npm

Install oroute in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "oroute-api-key",
      "description": "OROUTE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "oroute-base-url",
      "description": "OROUTE_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "oroute": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "oroute-mcp"
      ],
      "env": {
        "OROUTE_API_KEY": "${input:oroute-api-key}",
        "OROUTE_BASE_URL": "${input:oroute-base-url}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

oroute in other clients