Skip to content
VS Code

ai consensus for VS Code

io.github.thestevenjohnstone/ai-consensus

Standing review layer for coding agents: Claude, GPT and Gemini debate, return consensus + dissent.

client:VS Code transport:stdio runtime:npm

Install ai consensus in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ai-consensus-api-key",
      "description": "AI_CONSENSUS_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "ai-consensus": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "ai-consensus-connector"
      ],
      "env": {
        "AI_CONSENSUS_API_KEY": "${input:ai-consensus-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

ai consensus in other clients