Skip to content
VS Code

mindpm for VS Code

io.github.umitkavala/mindpm

Persistent project memory for LLMs via SQLite. Never re-explain your project again.

client:VS Code transport:stdio runtime:npm

Install mindpm in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mindpm-db-path",
      "description": "MINDPM_DB_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mindpm-port",
      "description": "MINDPM_PORT",
      "password": true
    }
  ],
  "servers": {
    "mindpm": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mindpm"
      ],
      "env": {
        "MINDPM_DB_PATH": "${input:mindpm-db-path}",
        "MINDPM_PORT": "${input:mindpm-port}"
      }
    }
  }
}

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

mindpm in other clients