Skip to content
VS Code

memory arbiter mcp for VS Code

io.github.billy12151/memory-arbiter-mcp

Local SQLite MCP memory: evidence-based recall, advisory conflict notices, authorized governance.

client:VS Code transport:stdio runtime:pypi

Install memory arbiter mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "memory-arbiter-config",
      "description": "MEMORY_ARBITER_CONFIG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "memory-arbiter-client",
      "description": "MEMORY_ARBITER_CLIENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "memory-arbiter-agent-id",
      "description": "MEMORY_ARBITER_AGENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "memory-arbiter-db-path",
      "description": "MEMORY_ARBITER_DB_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "memory-arbiter-backup-jsonl",
      "description": "MEMORY_ARBITER_BACKUP_JSONL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "memory-arbiter-mcp-transport",
      "description": "MEMORY_ARBITER_MCP_TRANSPORT",
      "password": true
    }
  ],
  "servers": {
    "memory-arbiter-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "memory-arbiter-mcp"
      ],
      "env": {
        "MEMORY_ARBITER_CONFIG": "${input:memory-arbiter-config}",
        "MEMORY_ARBITER_CLIENT": "${input:memory-arbiter-client}",
        "MEMORY_ARBITER_AGENT_ID": "${input:memory-arbiter-agent-id}",
        "MEMORY_ARBITER_DB_PATH": "${input:memory-arbiter-db-path}",
        "MEMORY_ARBITER_BACKUP_JSONL": "${input:memory-arbiter-backup-jsonl}",
        "MEMORY_ARBITER_MCP_TRANSPORT": "${input:memory-arbiter-mcp-transport}"
      }
    }
  }
}

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

memory arbiter mcp in other clients