TabTree for VS Code
app.tabtree/tabtree
Turn conversations into mind maps and whiteboards — in your TabTree account, or local files.
client:VS Code
transport:stdio
runtime:npm
Install TabTree in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "tabtree-api-key",
"description": "TABTREE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "tabtree-dir",
"description": "TABTREE_DIR",
"password": true
}
],
"servers": {
"tabtree": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"tabtree-mcp"
],
"env": {
"TABTREE_API_KEY": "${input:tabtree-api-key}",
"TABTREE_DIR": "${input:tabtree-dir}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs