Skip to content
VS Code

Model Council for VS Code

io.github.totti0135/model-council

Consult other LLMs as tools — ask them, compare their answers, synthesize a conclusion.

client:VS Code transport:stdio runtime:pypi

Install Model Council in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "council-models",
      "description": "COUNCIL_MODELS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "council-config",
      "description": "COUNCIL_CONFIG",
      "password": true
    }
  ],
  "servers": {
    "model-council": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "model-council-mcp"
      ],
      "env": {
        "COUNCIL_MODELS": "${input:council-models}",
        "COUNCIL_CONFIG": "${input:council-config}"
      }
    }
  }
}

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

Model Council in other clients