mind map for VS Code
io.github.nerfels/mind-map
Experimental code intelligence platform for Claude Code with AST parsing and context analysis
client:VS Code
transport:stdio
runtime:npm
Install mind map in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mcp-project-root",
"description": "MCP_PROJECT_ROOT",
"password": true
}
],
"servers": {
"mind-map": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mind-map-mcp"
],
"env": {
"MCP_PROJECT_ROOT": "${input:mcp-project-root}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs