ensemble-pro
Allows using NVIDIA NIM models as participants in a multi-model AI council to debate, critique, and vote on questions.
Allows using local Ollama models as participants in a multi-model AI council to debate, critique, and vote on questions.
Allows using OpenAI models (such as GPT-4o) as participants in a multi-model AI council to debate, critique, and vote on questions.
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., "@ensemble-proUse the AI council to debate: Is Rust or Go better for backend services?"
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.
Ensemble Pro: Multi-Model AI Council
Ensemble Pro is an open-source Model Context Protocol (MCP) server that allows multiple LLMs to debate, critique, and vote on any question to reach a consensus.
Built with a universal OpenAI-compatible API interface, it works with any model (OpenAI, NVIDIA NIM, Ollama, LM Studio, Groq, etc.) and can be integrated into any MCP-compatible client (Cursor, Claude Desktop, Chatbox, Zed).
Why Ensemble Pro?
Standard LLMs give you one probabilistic answer. Ensemble Pro gives you an argued consensus.
Resilient (Failover & Hot-Swap): If an API goes down mid-debate, the system automatically swaps in a backup model without interrupting the council.
Universal: Works with any OpenAI-compatible API. Mix local Ollama models with cloud GPT-4o.
Multilingual: Models are instructed to respond in the language of your prompt.
Self-Cleaning: Automatically deletes debate logs older than 72 hours.
Zero-Cost: Run it entirely on free tiers or local models.
Related MCP server: consensus-mcp
How It Works
When you ask a question, Ensemble Pro runs a 5-stage council:
[ USER QUESTION ]
│
▼
┌───────────────────────────────────────────────────────┐
│ STAGE 1: PROPOSAL (Parallel) │
│ ┌─────────┐ ┌─────────┐ ┌─────────┐ │
│ │ Model A │ │ Model B │ │ Model C │ (Anonymized) │
│ └────┬────┘ └────┬────┘ └────┬────┘ │
│ │ │ │ │
│ ▼ ▼ ▼ │
│ STAGE 2: REVIEW (Parallel) │
│ Each model critiques the others' proposals. │
│ │ │ │ │
│ ▼ ▼ ▼ │
│ STAGE 3: REBUTTAL (Parallel) │
│ Each model defends its proposal from criticism. │
│ │ │ │ │
│ ▼ ▼ ▼ │
│ STAGE 4: VOTE (Parallel) │
│ Models rank the proposals (Borda Count). │
│ │ │
│ ▼ │
│ [ WINNER DECLARED ] │
│ │ │
│ ▼ │
│ STAGE 5: SYNTHESIS │
│ The winning model synthesizes the final answer. │
│ │ │
│ ▼ │
│ [ FINAL CONSENSUS ] │
└───────────────────────────────────────────────────────┘Failover & Hot-Swap Logic
[ COUNCIL STARTS ]
│
▼
HEALTH CHECK ──> Model A: OK
Model B: FAIL (Rate Limit)
Model C: OK
│
▼
FAILOVER ─────> Replaces Model B with Backup Model D
│
▼
COUNCIL RUNS ─> Model A + Model C + Model D
│
▼
MID-DEBATE ───> Model C Crashes!
│
▼
HOT-SWAP ─────> Coordinator drops Model C, brings in Model E
│
▼
COUNCIL FINISHES (Uninterrupted)Installation
Prerequisites
Python 3.10+
curlorgitto download the repo
Quick Install
Download the package.
Run the installer:
bash install.shThe installer will:
Create an isolated Python virtual environment in
~/.ensemble-pro.Ask you for your API keys and model IDs (OpenAI, NVIDIA, Ollama, or Custom).
Generate the JSON configuration block needed for your MCP client.
Integration
Ensemble Pro works with any MCP client. Use the JSON generated by install.sh.
Example for Cursor / Claude Desktop / Chatbox:
{
"mcpServers": {
"ensemble-pro": {
"command": "/home/user/.ensemble-pro/.venv/bin/python",
"args": ["-m", "src.mcp_server"],
"cwd": "/home/user/.ensemble-pro",
"env": {
"OPENAI_API_KEY": "sk-...",
"NVIDIA_API_KEY": "nvapi-...",
"OLLAMA_BASE_URL": "http://localhost:11434/v1"
}
}
}
}Usage in Chat
Once connected, simply ask your AI assistant to use the council:
"Use ensemble_pro to debate: Is Rust better than C++ for systems programming?"
The main model will trigger the MCP tool, run the council in the background, and return the synthesized consensus.
Uninstall
To completely remove Ensemble Pro and its sandbox:
bash uninstall.sh
# or manually:
rm -rf ~/.ensemble-proLicense
MIT License. Built upon the open-source ensemble framework.
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 Servers
- Alicense-qualityDmaintenanceA Model Context Protocol server that enables collaborative debates between multiple AI agents, allowing them to discuss and reach consensus on user prompts.Last updated1MIT
- Alicense-qualityBmaintenanceAn MCP server that enables multi-model debate and consensus building through a single tool. It orchestrates multiple AI models from various providers to debate topics and reach validated conclusions with real-time progress tracking.Last updated323MIT
- Alicense-qualityDmaintenanceMCP server for AI agents to conduct multi-LLM roundtable discussions, returning structured common, divergent, and unique perspectives.Last updatedMIT
- Alicense-qualityDmaintenanceAn MCP server that orchestrates multiple AI agents in parallel to get diverse perspectives on a single topic, supporting debate, review, and quick modes.Last updated239Apache 2.0
Related MCP Connectors
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
MCP server for AI dialogue using various LLM models via AceDataCloud
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
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/Svarkovsky/ensemble-pro'
If you have feedback or need assistance with the MCP directory API, please join our Discord server