Cross-session multi-agent debate MCP server. Same model, different context depths, better decisions.
Project description
Ploidy
Intentional context asymmetry to reduce confirmation bias in LLMs.
Why
Ask the same model the same question in separate sessions. You'll get different answers every time — some agree, some disagree, some equivocate. If you continue in just one session, the model's first stochastic response becomes an anchor. It reinforces its own prior, the user builds on it, and the session locks into a trajectory that prompt engineering cannot undo.
This means identical models, identical prompts, identical users — but different project outcomes depending on which random sample landed first. The user is in a probability lottery without knowing it. Task completion time varies, task success varies, and perceived "model performance" varies — all from the same model.
This is not the same problem that multi-agent teams solve. Agent teams (CrewAI, MetaGPT, Claude Agent Teams) divide labor across models for throughput. More hands, same perspective. Under symmetric information, scaling agents is mathematically equivalent to majority voting over identically biased samples — it cannot improve expected correctness.
Ploidy takes the orthogonal approach: deliberately create context asymmetry within the same model, then make the asymmetric sessions debate. A deep session carries full project context. A fresh session starts with zero prior commitment. When they disagree, the cause is isolatable — one has context the other doesn't. That disagreement is the signal.
Quick Start
# Install
pip install ploidy # core server
pip install ploidy[api] # + auto-debate mode (requires OpenAI SDK)
# Start the server
python -m ploidy
Terminal 1 (Deep session) — tell your AI:
"Start a Ploidy debate: Should we use monorepo or polyrepo?"
Terminal 2 (Fresh session) — tell your AI:
"Join Ploidy debate a1b2c3d4e5f6"
MCP Client Configuration
{
"mcpServers": {
"ploidy": {
"type": "streamable-http",
"url": "http://localhost:8765/mcp"
}
}
}
How It Works
Terminal 1 (Deep) Terminal 2 (Fresh)
[Full project context] [Zero context]
| |
└──── debate/start ──→ Ploidy Server ←── debate/join ────┘
(port 8765)
position ──────→ [SQLite + WAL] ←────── position
challenge ─────→ [State Machine] ←───── challenge
converge ──────→ [Convergence] ←────── converge
↓
Structured Result
(agreements, disagreements,
confidence score)
Sessions debate through typed semantic actions (agree, challenge, propose alternative, synthesize) across a five-phase protocol: Independent → Position → Challenge → Convergence → Complete. The Context Asymmetry Spectrum ranges from Deep (full context) through Semi-Fresh (compressed context, passively or actively delivered) to Fresh (zero context).
Tools
| Tool | Description |
|---|---|
debate_start |
Begin a debate with a prompt |
debate_join |
Join as a fresh (zero-context) session |
debate_position |
Submit your stance |
debate_challenge |
Critique with semantic actions (agree/challenge/propose_alternative/synthesize) |
debate_converge |
Trigger convergence analysis |
debate_status |
Check current state |
debate_cancel |
Cancel in progress |
debate_delete |
Permanently delete |
debate_history |
List past debates |
debate_auto |
Run a full two-sided debate automatically via API |
Configuration
All via environment variables:
PLOIDY_PORT=8765 # Server port
PLOIDY_DB_PATH=~/.ploidy/ploidy.db # Database location
PLOIDY_LOG_LEVEL=INFO # Logging level
PLOIDY_AUTH_TOKEN=secret # Bearer token auth (optional)
PLOIDY_API_BASE_URL=https://api.openai.com/v1 # Optional auto-debate backend
PLOIDY_API_KEY=... # Optional API key for auto mode
PLOIDY_API_MODEL=gpt-5.4 # Optional model override for auto mode
Single-Terminal Auto Mode
If you configure an OpenAI-compatible API backend, Ploidy can run both sides of the
debate automatically in one tool call. In debate_auto, the server generates:
- an Experienced position using the provided
context_documents - a Fresh or Semi-Fresh counter-position
- challenge messages from both sides
- the final convergence analysis
Fresh auto sessions must use delivery_mode="none". Semi-Fresh auto sessions must
use delivery_mode="passive" or delivery_mode="active".
Docker
docker compose up
Documentation
- Getting Started — Install and first debate
- How It Works — Core concept
- Architecture — Technical overview
- API Reference — Tool documentation
- Research — Academic positioning
Research
Ploidy extends Cross-Context Review (Song 2026) from unidirectional fresh-session review to bidirectional structured debate. The intersection of context asymmetry × same-model debate × structured protocol has zero published papers as of March 2026.
In pilot experiments, context asymmetry shows no benefit on short-context tasks where entrenchment does not occur — but on long-context tasks with anchoring bias, asymmetric debate achieves the highest ground-truth recall (5/5 vs. single session's 3/5). These results bound where the intervention applies.
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ploidy-0.3.1.tar.gz.
File metadata
- Download URL: ploidy-0.3.1.tar.gz
- Upload date:
- Size: 539.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b08a710490ab99604b4f1816965489cf0188345c33f34e8364895c7fc9960ae
|
|
| MD5 |
cd608a3127f95a9cc52b7f3b6eda018c
|
|
| BLAKE2b-256 |
3ac0ba11d1c3c8e45f0992986e4214795eeb2589e2d6d10a824128ef8397395c
|
File details
Details for the file ploidy-0.3.1-py3-none-any.whl.
File metadata
- Download URL: ploidy-0.3.1-py3-none-any.whl
- Upload date:
- Size: 34.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28b35d604e4361098ab923337c12edf003378033f05f56f33c73a1a12dba74ff
|
|
| MD5 |
8c4c165303b3fbefd588f126a0b72baa
|
|
| BLAKE2b-256 |
aea7c19b82edd02e21aa3dd01fdf059575d4d4c6cd5783beb40a6519b29826ef
|