Skip to content
VS Code

kodiak for VS Code

com.azurecarbon/kodiak

Verifiable fact-checking: verdict, confidence, sources, and a tamper-evident certificate.

client:VS Code transport:stdio runtime:npm

Install kodiak in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "kodiak-api-key",
      "description": "KODIAK_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "kodiak-url",
      "description": "KODIAK_URL",
      "password": true
    }
  ],
  "servers": {
    "kodiak": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "kodiak-mcp"
      ],
      "env": {
        "KODIAK_API_KEY": "${input:kodiak-api-key}",
        "KODIAK_URL": "${input:kodiak-url}"
      }
    }
  }
}

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

kodiak in other clients