Skip to content
VS Code

mindforge for VS Code

io.github.sairam0424/mindforge

Read the MindForge engine over MCP: knowledge graph, project health, and audit log.

client:VS Code transport:stdio runtime:npm

Install mindforge in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "claude-project-dir",
      "description": "CLAUDE_PROJECT_DIR",
      "password": true
    }
  ],
  "servers": {
    "mindforge": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mindforge-mcp-server"
      ],
      "env": {
        "CLAUDE_PROJECT_DIR": "${input:claude-project-dir}"
      }
    }
  }
}

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

mindforge in other clients