Skip to content
VS Code

MCP Bench Router for VS Code

io.github.k1ta141k/mcp-bench-router

Routes design tasks to designarena.ai's top-ranked model via OpenRouter across 14 categories.

client:VS Code transport:stdio runtime:npm

Install MCP Bench Router in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "openrouter-api-key",
      "description": "OPENROUTER_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "mcp-bench-router": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-bench-router"
      ],
      "env": {
        "OPENROUTER_API_KEY": "${input:openrouter-api-key}"
      }
    }
  }
}

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

MCP Bench Router in other clients