Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-quantulabs-hivemind": {
"args": [
"-y",
"@quantulabs/hivemind"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Multi-model AI consensus platform that queries GPT-5.2, Claude Opus 4.5, and Gemini 3 Pro simultaneously to deliver synthesized, high-confidence responses.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@quantulabs/hivemind' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @quantulabs/hivemind against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
An open-source AI agent that brings the power of Gemini directly into your terminal.
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
MCP Security Weekly
Get CVE alerts and security updates for io.github.QuantuLabs/hivemind and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Multi-model AI consensus platform that queries GPT-5.2, Claude Opus 4.5, and Gemini 3 Pro simultaneously to deliver synthesized, high-confidence responses.
Use Hivemind directly in Claude Code to get perspectives from GPT-5.2 and Gemini 3 Pro. Claude acts as the orchestrator and synthesizes the responses.
Note: No Anthropic API key needed - Claude is already your host!
npm install -g @quantulabs/hivemind
claude mcp add hivemind -- hivemind
You need at least one API key, but both are recommended for better consensus:
Option 1: Paste directly (recommended)
/hive-config sk-proj-xxx... # OpenAI key
/hive-config AIzaSy... # Google key
Option 2: Config file
Create ~/.config/hivemind/.env:
OPENAI_API_KEY=sk-...
GOOGLE_API_KEY=AIza...
# Optional: Override default models
OPENAI_MODEL=gpt-5.1
GOOGLE_MODEL=gemini-2.5-flash
A
.env.exampletemplate is included in the package.
For standalone MCP usage, you can also add an Anthropic key to include Claude in the consensus:
ANTHROPIC_API_KEY=sk-ant-...
Disable Claude Code mode via /hive-config > Settings > Claude Code Mode.
/hive "Why is my WebSocket connection dropping?"
Claude orchestrates the consensus from GPT-5.2 and Gemini 3 Pro responses.
| Tool | Description |
|---|---|
hivemind | Query models and get synthesized consensus |
configure_keys | Set API keys (stored securely) |
check_status | Check configuration and active providers |
configure_hive | Toggle grounding search and settings |
check_stats | View token usage and cost statistics |
/hive <question> - Orchestrate multi-model consensus with Claude as the synthesizer/hive-config - Configure API keys and settings/hivestats - View usage statisticsCopy CLAUDE.md.example to your project's .claude/CLAUDE.md to enable automatic Hivemind consultation when Claude is stuck (after 3+ failed attempts).
All providers use optimized caching for cost reduction on follow-up queries:
| Provider | Type | Savings | Min Tokens |
|---|---|---|---|
| OpenAI | Automatic | 50% | 1024 |
| Gemini 2.5+ | Implicit | 90% | - |
| Anthropic | Explicit | 90% | 1024 |
A full-featured web app with solo mode, hivemind mode, and conversation history.
# Clone the repository
git clone https://github.com/QuantuLabs/hivemind.git
cd hivemind
# Install dependencies (requires Bun >= 1.0)
bun install
# Start development server
bun dev
Open http://localhost:3000, click the settings icon, and enter your API keys.