Skip to content
VS Code

kakunin for VS Code

io.github.kakunin-ai/kakunin

X.509 identity, risk scoring, and audit logging for AI agents. MiCA + EU AI Act compliant.

client:VS Code transport:stdio runtime:npm

Install kakunin in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "kakunin-api-key",
      "description": "KAKUNIN_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "kakunin-agent-id",
      "description": "KAKUNIN_AGENT_ID",
      "password": true
    }
  ],
  "servers": {
    "kakunin": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@kakunin/mcp"
      ],
      "env": {
        "KAKUNIN_API_KEY": "${input:kakunin-api-key}",
        "KAKUNIN_AGENT_ID": "${input:kakunin-agent-id}"
      }
    }
  }
}

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

kakunin in other clients