Skip to content
VS Code

MADB — Agent Memory Database for VS Code

io.github.spshkar84/madb-memory

Durable causal memory for AI agents — semantic recall, causal lineage, and skills. Local-first.

client:VS Code transport:stdio runtime:pypi

Install MADB — Agent Memory Database in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "madb-data-dir",
      "description": "MADB_DATA_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "madb-tenant-id",
      "description": "MADB_TENANT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "madb-telemetry",
      "description": "MADB_TELEMETRY",
      "password": true
    }
  ],
  "servers": {
    "madb-memory": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "madb-mcp-server"
      ],
      "env": {
        "MADB_DATA_DIR": "${input:madb-data-dir}",
        "MADB_TENANT_ID": "${input:madb-tenant-id}",
        "MADB_TELEMETRY": "${input:madb-telemetry}"
      }
    }
  }
}

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

MADB — Agent Memory Database in other clients