hivemind for VS Code
io.github.hiveforge-sh/hivemind
MCP server for Obsidian vaults - AI tools with consistent canonical context. Local-first.
client:VS Code
transport:stdio
runtime:npm
Install hivemind in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "hivemind-vault-path",
"description": "HIVEMIND_VAULT_PATH",
"password": true
},
{
"type": "promptString",
"id": "hivemind-config-path",
"description": "HIVEMIND_CONFIG_PATH",
"password": true
}
],
"servers": {
"hivemind": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@hiveforge/hivemind-mcp"
],
"env": {
"HIVEMIND_VAULT_PATH": "${input:hivemind-vault-path}",
"HIVEMIND_CONFIG_PATH": "${input:hivemind-config-path}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs