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 "Deploy 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 deployed
Maintenance
Related MCP Connectors
MCP server for building and testing AI agents with multi-model experimentation and insights.
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 unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that enables collaborative debates between multiple AI agents, allowing them to discuss and reach consensus on user prompts.1MIT
- AlicenseNot gradedqualityBmaintenanceAn 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.8 npm3MIT
- AlicenseAqualityCmaintenanceAn MCP server that enables multiple AI models (ChatGPT, Gemini, Claude, Grok) to discuss, debate, and reach consensus via browser automation.71MIT
- AlicenseAqualityAmaintenanceAn MCP server that seats multiple LLMs as a council, letting your assistant query them in parallel or in sequence, relay answers for cross-critique, and merge conclusions within one conversation.672 PyPI2MIT