Skip to content
VS Code

kontra mcp for VS Code

io.github.bluwork/kontra-mcp

The Tenth Man Protocol — structured contrarian analysis for decision-makers via MCP

client:VS Code transport:stdio runtime:npm

Install kontra mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "kontra-default-mode",
      "description": "KONTRA_DEFAULT_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "kontra-log-level",
      "description": "KONTRA_LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "kontra-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "kontra-mcp"
      ],
      "env": {
        "KONTRA_DEFAULT_MODE": "${input:kontra-default-mode}",
        "KONTRA_LOG_LEVEL": "${input:kontra-log-level}"
      }
    }
  }
}

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

kontra mcp in other clients