Skip to content
VS Code

kira for VS Code

io.github.aibenyclaude-coder/kira

Skills and Scars for AI agents - your agent records its failures and never repeats them.

client:VS Code transport:stdio runtime:npm

Install kira in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "kira-telemetry",
      "description": "KIRA_TELEMETRY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "kira-telemetry-url",
      "description": "KIRA_TELEMETRY_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "kira-home",
      "description": "KIRA_HOME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "kira-pro-key",
      "description": "KIRA_PRO_KEY",
      "password": true
    }
  ],
  "servers": {
    "kira": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "kira-mcp"
      ],
      "env": {
        "KIRA_TELEMETRY": "${input:kira-telemetry}",
        "KIRA_TELEMETRY_URL": "${input:kira-telemetry-url}",
        "KIRA_HOME": "${input:kira-home}",
        "KIRA_PRO_KEY": "${input:kira-pro-key}"
      }
    }
  }
}

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

kira in other clients