Skip to content
VS Code

adrkit decision memory for VS Code

dev.adrkit/mcp

Deterministic, offline, read-only ADR decision memory for coding agents. No model or network calls.

client:VS Code transport:stdio runtime:npm

Install adrkit decision memory in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "adrkit-mcp-cwd",
      "description": "ADRKIT_MCP_CWD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "adrkit-mcp-dir",
      "description": "ADRKIT_MCP_DIR",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@adrkit/mcp"
      ],
      "env": {
        "ADRKIT_MCP_CWD": "${input:adrkit-mcp-cwd}",
        "ADRKIT_MCP_DIR": "${input:adrkit-mcp-dir}"
      }
    }
  }
}

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

adrkit decision memory in other clients