Skip to content
VS Code

mindbase for VS Code

io.github.frankchu91/mindbase

LLM-maintained personal wiki: cross-references sources, flags contradictions. Local markdown.

client:VS Code transport:stdio runtime:npm

Install mindbase in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mindbase-data-dir",
      "description": "MINDBASE_DATA_DIR",
      "password": true
    }
  ],
  "servers": {
    "mindbase": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mindbase-mcp"
      ],
      "env": {
        "MINDBASE_DATA_DIR": "${input:mindbase-data-dir}"
      }
    }
  }
}

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

mindbase in other clients