Skip to content
VS Code

Heartwood Memory — governed memory for AI agents for VS Code

io.github.jermayne36/heartwood-memory

Heartwood Memory — governed AI agent memory; signed provenance. BUSL-1.1; not OSI open source.

client:VS Code transport:stdio runtime:pypi

Install Heartwood Memory — governed memory for AI agents in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "heartwood-db-path",
      "description": "HEARTWOOD_DB_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "heartwood-tenant",
      "description": "HEARTWOOD_TENANT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "heartwood-mcp-allowed-tools",
      "description": "HEARTWOOD_MCP_ALLOWED_TOOLS",
      "password": true
    }
  ],
  "servers": {
    "heartwood-memory": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "heartwood-memory"
      ],
      "env": {
        "HEARTWOOD_DB_PATH": "${input:heartwood-db-path}",
        "HEARTWOOD_TENANT": "${input:heartwood-tenant}",
        "HEARTWOOD_MCP_ALLOWED_TOOLS": "${input:heartwood-mcp-allowed-tools}"
      }
    }
  }
}

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

Heartwood Memory — governed memory for AI agents in other clients