Skip to content
VS Code

project memory mcp for VS Code

io.github.kaaustubh/project-memory-mcp

Persistent memory for AI coding agents — past bugs, decisions, and your corrections, in your repo.

client:VS Code transport:stdio runtime:npm

Install project memory mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "project-memory-root",
      "description": "PROJECT_MEMORY_ROOT",
      "password": true
    }
  ],
  "servers": {
    "project-memory-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@kaaustubh/project-memory-mcp"
      ],
      "env": {
        "PROJECT_MEMORY_ROOT": "${input:project-memory-root}"
      }
    }
  }
}

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

project memory mcp in other clients