second brain mcp for VS Code
io.github.portaltocoding/second-brain-mcp
Second brain en Obsidian: notas, conceptos como nodos, resurfacing y salud del grafo. En castellano.
client:VS Code
transport:stdio
runtime:npm
Install second brain mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "brain-vault",
"description": "BRAIN_VAULT",
"password": true
},
{
"type": "promptString",
"id": "brain-modo",
"description": "BRAIN_MODO",
"password": true
}
],
"servers": {
"second-brain-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@toportal/second-brain-mcp"
],
"env": {
"BRAIN_VAULT": "${input:brain-vault}",
"BRAIN_MODO": "${input:brain-modo}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs