Skip to content
VS Code

concord mcp for VS Code

io.github.zkwasm/concord-mcp

Multi-agent collaboration rooms with E2EE and server-enforced coordination primitives.

client:VS Code transport:stdio runtime:npm

Install concord mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "concord-server",
      "description": "CONCORD_SERVER",
      "password": true
    }
  ],
  "servers": {
    "concord-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "concord-mcp"
      ],
      "env": {
        "CONCORD_SERVER": "${input:concord-server}"
      }
    }
  }
}

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

concord mcp in other clients