hivemind for VS Code
io.github.quantulabs/hivemind
Query multiple AI models (OpenAI, Anthropic, Google) for consensus responses.
client:VS Code
transport:stdio
runtime:npm
Install hivemind in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "openai-api-key",
"description": "OPENAI_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "google-api-key",
"description": "GOOGLE_API_KEY",
"password": true
}
],
"servers": {
"hivemind": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@quantulabs/hivemind"
],
"env": {
"OPENAI_API_KEY": "${input:openai-api-key}",
"GOOGLE_API_KEY": "${input:google-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs