LLM Council MCP
Provides automated context resolution from GitHub repositories, allowing the council to ingest relevant repository information during deliberations.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@LLM Council MCPShould we migrate our core database to DynamoDB before the Q3 launch?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
LLM Council MCP
🏛️ Provenance & What This Fork Changes
Fork Lineage:
This project is an advanced, production-hardened fork of Andrej Karpathy's llm-council (expanded from az9713/llm-council).
Karpathy built the original llm-council as a fun "Saturday vibe-hack" — a lightweight web script to compare commercial frontier LLMs side-by-side using OpenRouter.
LLM Council MCP transforms that initial prototype into an enterprise deliberation engine and a headless consensus oracle for autonomous AI agents. Instead of humans manually querying a browser, agents like Claude Code and Google Antigravity call the council programmatically via the Model Context Protocol (MCP) whenever they face irreversible, high-stakes (Type-1) architectural dilemmas.
Related MCP server: AI Consensus Connector
⚡ Original vs. LLM Council MCP: Feature Comparison
Capability | Karpathy Original ( | LLM Council MCP (This Fork) |
Primary Consumer | Humans in a Web Browser | Autonomous AI Coding Agents (MCP) + Humans via Web UI |
Agent Interface | ❌ None (Web UI only) | Native FastMCP Server ( |
Model Infrastructure | Cloud-only via OpenRouter | Hybrid: Cloud (OpenRouter) + Local vLLM ( |
Model Specialization | Generic system prompts | Domain Skill Injection: Models decorated with |
Board Profiles | Single static list of models | 5 Specialized Domain Boards: Cognitive Strategy, Code Craft, Deep Tech, SecOps, and UI/UX |
Consensus Mechanics | Linear 3-stage execution | Early Consensus Bypass, Weighted Consensus (by win rate), Multi-Chairman, and Adversarial Validation |
Debate Protocol | ❌ None | Multi-round structured debate: Position → Critique → Rebuttal → Chairman Judgment |
Decision Output | Unbounded text transcript | Strict ≤150-word Markdown ADR (Verdict, Confidence, Recommendation, Dissenting Risk) |
Telemetry & Metrics | ❌ None | Empirical Performance Dashboard: Elo win-rates, peer evaluation stats, and token economics |
Context Ingestion | ❌ Manual copy-paste | Automated Local Workspace & GitHub Repository context resolution |
Technology Scouting | ❌ None (Hallucinated from weights) | Autonomous Research Engine: Live GitHub repo telemetry + DuckDuckGo Lite search + local skills discovery |
Deployment | Local scripts with hardcoded configs | 12-Factor Docker Compose stack with zero leaked host credentials via |
📸 Visual Tour of New Capabilities
1. Stage 1: Domain-Specialized Independent Responses
Models are not treated as generic chatbots. Each seat operates with an injected domain skill and provides explicit confidence calibration and structured reasoning.
2. Specialized Council Boards
Switch between dedicated expert boards with a single click or specify council_id in MCP tool calls:
🧠
cognitive-strategy: High-stakes architectural & strategic trade-offs (Red Team + First Principles + Deep Research).🛠️
code-craft: Deep refactoring, diff-risk minimization & surgical simplicity.🔬
deep-tech: Protocol RFCs, performance limits, and dependency audits.🛡️
sec-ops: Production security, OWASP audits, and SRE resilience.🎨
frontend-craft: Distinctive design systems, UI/UX DNA, and client workflows.
3. Empirical Performance Dashboard
Track which models and skills provide the most accurate evaluations through peer review. Features historical win rates, peer agreement metrics, and Chairman synthesis quality.
4. Advanced Consensus Modes & Settings
Configure early-exit consensus, Chain-of-Thought reasoning, adversarial reviews, and weighted voting directly from the settings drawer:
🔌 Using as an MCP Oracle (Claude Code & Antigravity)
The repository bundles a standalone FastMCP server in mcp/ that lets AI coding assistants deliberate before committing dangerous or irreversible changes.
The 4-Point Gating Guardrail
To prevent agents from lazily delegating routine tasks, ask_council enforces a strict gating checklist:
Type-1 Decision: Must be irreversible or carry a high rollback cost (justified in
type1_rationale).Genuine Uncertainty: The agent must have attempted solo reasoning first and encountered a real conflict or unknown.
High Cost of Error: The cost of picking the wrong path must exceed ~35s + API token cost.
User Has Not Decided: Council informs open choices; it never overrides an explicit user directive.
Trivial or unjustified queries are rejected in milliseconds with ## Verdict: Gating Rejection without triggering backend LLM calls.
Output Schema (Bounded ≤150-Word ADR)
Calls to ask_council return a structured, high-density Markdown Architectural Decision Record:
## Verdict: Use SQLite with WAL mode for local conversation storage
**Confidence:** Consensus — 3 models evaluated (top ranked: local/antigravity@red-team-reasoning)
**Recommendation:** Deploy SQLite with PRAGMA journal_mode=WAL and PRAGMA busy_timeout=5000. It eliminates network daemon failure modes and delivers near-zero operational complexity.
**Dissenting risk:** If write contention exceeds 1% busy timeouts under horizontal multi-process scale, pivot to PostgreSQL.🚀 Quick Setup
1. Configure Environment
Copy the template and configure your local endpoints or OpenRouter API key:
cp .env.example .env# Optional: OpenRouter API key (only needed for cloud models)
OPENROUTER_API_KEY=sk-or-v1-...
# Optional: Local vLLM / OpenAI-compatible endpoint (defaults to host gateway)
QWEN_BASE_URL=http://host.docker.internal:8002/v12. Run Full Stack via Docker Compose (Recommended)
docker compose -f infra/docker-compose.yml up -dWeb UI: http://localhost:5173
Backend API: http://localhost:8001 (Health check:
curl http://localhost:8001/)
3. Connect MCP to Your Agents
cd mcp
bash install.sh
cd ..Claude Code (~/.claude.json):
{
"mcpServers": {
"llm-council": {
"command": "/absolute/path/to/llm-council-mcp/mcp/.venv/bin/python",
"args": ["/absolute/path/to/llm-council-mcp/mcp/server.py"],
"timeout": 140000
}
}
}Antigravity (~/.gemini/config/mcp_config.json):
{
"mcpServers": {
"llm-council": {
"command": "/absolute/path/to/llm-council-mcp/mcp/.venv/bin/python",
"args": ["/absolute/path/to/llm-council-mcp/mcp/server.py"],
"timeout": 140000
}
}
}🛠️ Tech Stack
Core Engine: FastAPI, Async HTTPX, Pydantic, uv
Protocol: FastMCP (Model Context Protocol stdio transport)
Frontend: React 18, Vite, Custom Design System, React Markdown
Models: OpenRouter, vLLM (Qwen 2.5/3.6), Local Host Shims (Claude Code CLI, Antigravity CLI)
Containerization: Docker & Docker Compose
📜 Acknowledgments & License
Original concept and initial implementation by Andrej Karpathy
Extended multi-feature baseline by az9713
Released under the MIT License.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Multi-LLM council: 25+ frontier models in parallel, consensus scoring, verdict-first code review.
Commission a multi-model AI spec committee from your agent; get rubric-scored, build-ready specs.
11Deterministic AI code review, with an audit record. Governance inside the agent loop.
Consult a multi-model panel on contested decisions via MCP: architecture, plan review, strategy.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceEnables multi-strategy AI orchestration including council decision review, debate, brainstorming, evaluation, and spec review, with support for multiple LLM providers and advisor personas.9MIT
- AlicenseNot gradedqualityCmaintenanceIntegrates AI Consensus into coding agents, routing decisions through three frontier AI models for independent analysis and cross-examination, returning a recommendation and strongest dissent.68MIT

tokonomix-council-mcpofficial
AlicenseAqualityBmaintenanceEnables multi-model consensus decision-making for high-stakes AI decisions, using independent expert models and a judge to surface disagreements and ground decisions.11164MIT- AlicenseNot gradedqualityCmaintenanceEnables AI agents to add decision drafts, evidence, and counterarguments to a shared local decision state, while users confirm or reopen decisions in a web console. Prevents unverified agent answers from being silently turned into code.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/alkrcaaa/llm-council-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server