Skip to content
VS Code

akb for VS Code

io.github.dnotitia/akb

Git-backed org memory for AI agents — hybrid search, tables, files & a URI graph over MCP.

client:VS Code transport:stdio runtime:npm

Install akb in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "akb-mcp-url",
      "description": "AKB_MCP_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "akb-pat",
      "description": "AKB_PAT",
      "password": true
    }
  ],
  "servers": {
    "akb": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "akb-mcp"
      ],
      "env": {
        "AKB_MCP_URL": "${input:akb-mcp-url}",
        "AKB_PAT": "${input:akb-pat}"
      }
    }
  }
}

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

akb in other clients