Skip to content
VS Code

polydev for VS Code

io.github.polydev-ai/polydev

Query GPT-5, Claude, Gemini, and Grok simultaneously through one MCP server

client:VS Code transport:stdio runtime:npm

Install polydev in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "polydev-user-token",
      "description": "POLYDEV_USER_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "polydev": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "polydev-ai"
      ],
      "env": {
        "POLYDEV_USER_TOKEN": "${input:polydev-user-token}"
      }
    }
  }
}

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

polydev in other clients