debate-hall-mcp

debate-hall-mcp

Enables structured multi-perspective debates with Wind (explore), Wall (constrain), and Door (synthesize) roles, featuring deterministic state, hash chains, GitHub integration, and auto-orchestration for decision-making.

Category
访问服务器

README

debate-hall-mcp

License CI PyPI version Python 3.11+

MCP server for Wind/Wall/Door multi-perspective debate orchestration with production-oriented design patterns.

Production Status: This server implements production-minded patterns (validation, bounded operation, atomic persistence) suitable for development and small-scale deployments. For larger production deployments, see production deployment considerations.

Table of Contents


For AI Agents

===AGENT_BOOTSTRAP===
DEV_BOOTSTRAP::scripts/dev-bootstrap.sh
DEV_HOOKS_OPT_IN::scripts/install-git-hooks.sh[core.hooksPath=.githooks]→DEBATE_HALL_AUTO_BOOTSTRAP=1
SKILL::skills/debate-hall/SKILL.md
WORKFLOW::init→turn→get→close
AGENTS::agents/README.md[Wind/Wall/Door definitions]
COGNITIONS::agents/cognitions/[PATHOS|ETHOS|LOGOS overlays]
RECIPES::[SPEED(3)|STANDARD(12)|DEEP(36)|FORTRESS|LABORATORY]
===END===

What It Does

  • Structured debates with Wind (explore) → Wall (constrain) → Door (synthesize)
  • Deterministic state with turn limits, hash chain, and verifiable transcripts
  • Multiple modes: Fixed sequence or mediated orchestration
  • GitHub integration: Sync debates to Discussions, create ADRs from synthesis
  • OCTAVE export: Semantic compression format with tamper-proof sealing (v1.0.0)

Quick Start

1. Install

pip install debate-hall-mcp

2. Configure MCP Client

Add to Claude Desktop (claude_desktop_config.json) or Claude Code (~/.claude.json):

{
  "mcpServers": {
    "debate-hall": {
      "command": "debate-hall-mcp"
    }
  }
}

3. Start a Debate

User: Start a debate about whether to rewrite our backend in Rust

Claude: [calls init_debate with thread_id="rust-rewrite",
         topic="Should we rewrite our backend in Rust?"]

4. Run the Dialectic

Wind → "What if we rewrote in Rust? Memory safety, performance..."
Wall → "Yes, but: team expertise, ecosystem maturity, timeline..."
Door → "Therefore: Profile hotspots first, consider Rust for specific components..."

That's it. For GitHub integration, see Configuration.

Installation

PyPI:

pip install debate-hall-mcp
# or
uv pip install debate-hall-mcp

From source:

git clone https://github.com/elevanaltd/debate-hall-mcp
cd debate-hall-mcp
./scripts/dev-bootstrap.sh
uv pip install -e ".[dev]"

Development bootstrap (worktrees/branches)

One-command setup:

./scripts/dev-bootstrap.sh

Optional: enable repo-local git hooks (prints reminder, or auto-runs bootstrap when DEBATE_HALL_AUTO_BOOTSTRAP=1):

./scripts/install-git-hooks.sh

MCP Tools

Core Tools

Tool Purpose
init_debate Create debate: thread_id, topic, mode?, max_turns?
add_turn Record turn: thread_id, role, content
get_debate View state: thread_id, include_transcript?
close_debate Finalize: thread_id, synthesis, output_format?, seal?

Mode Tools

Tool Purpose
pick_next_speaker Set next speaker (mediated mode)

Admin Tools

Tool Purpose
force_close_debate Emergency shutdown (I5 kill switch)
tombstone_turn Redact turn (preserves hash chain)

GitHub Tools

Tool Purpose
github_sync_debate Sync turns to GitHub Discussion/Issue
ratify_rfc Generate ADR from synthesis, create PR
human_interject Inject human GitHub comment into debate

Auto-Orchestration Tools

Tool Purpose
run_debate Run complete Wind→Wall→Door debate automatically
resume_debate Resume a PAUSED debate after failure

Configuration

Minimal (No GitHub)

The MCP config above is sufficient for local debates.

With GitHub Integration

  1. Copy .env.example to .env
  2. Add your GitHub token:
    GITHUB_TOKEN=ghp_your_token_here
    

Token scopes needed: repo, write:discussion Get one at: GitHub → Settings → Developer settings → Personal access tokens

Tier Configuration (Auto-Orchestration)

The run_debate tool uses tier configurations to determine which AI providers to use for each role.

Quick Start:

# Copy the template and add your API key
cp tiers.yaml.example tiers.yaml
export OPENROUTER_API_KEY=your-key-here

Resolution order:

  1. DEBATE_HALL_TIERS_FILE environment variable
  2. ./tiers.yaml (project root)
  3. ~/.debate-hall/tiers.yaml (user home)
  4. Built-in defaults

See tiers.yaml.example for all configuration options including CLI providers and custom prompts.

Example tier configuration:

# ~/.debate-hall/tiers.yaml
standard:
  wind:
    provider: cli      # Use external CLI (claude, codex, gemini)
    cli: claude
    role: wind-agent   # Optional: role for PAL MCP
  wall:
    provider: cli
    cli: codex
  door:
    provider: cli
    cli: gemini
  settings:
    consensus_required: true   # Wind/Wall must approve synthesis
    max_turns: 12
    max_refinement_loops: 3

premium:
  wind:
    provider: openrouter       # Use OpenRouter API
    model: anthropic/claude-3-opus
  wall:
    provider: openrouter
    model: openai/gpt-4-turbo
  door:
    provider: openrouter
    model: google/gemini-pro
  settings:
    consensus_required: true
    max_turns: 20
    max_refinement_loops: 5

Provider options:

  • cli: External AI CLIs (requires claude, codex, or gemini CLI installed)
  • openrouter: OpenRouter API (requires OPENROUTER_API_KEY env var)

Settings:

  • consensus_required: If true, Wind and Wall must approve Door's synthesis
  • max_turns: Maximum total turns in debate
  • max_refinement_loops: How many times Door can refine after rejection

See Usage Patterns for detailed configuration options.

Example

Thread: "microservices-vs-monolith"
Topic: "Should we migrate to microservices?"

[WIND] "What if we decomposed into services? Independent scaling,
        technology diversity, team autonomy..."

[WALL] "Yes, but we have 3 developers. Microservices add operational
        complexity, network latency, distributed transactions..."

[DOOR] "Therefore: Start with a modular monolith. Design service
        boundaries now, but keep deployment unified. Extract services
        only when team grows or specific scaling needs emerge."

Documentation

Doc Content
Usage Patterns Recipes, tuning, agent tiers, cognition prompts
Evidence Empirical research validating the approach
Architecture Execution tiers, Wall content contract
Examples Real multi-model debate patterns
Agents Wind/Wall/Door agent definitions
Skills AI agent skill installation

The Pattern

Three cognitive voices in tension:

Role Cognition Voice
Wind PATHOS "What if..." — expansive, visionary
Wall ETHOS "Yes, but..." — grounding, critical
Door LOGOS "Therefore..." — synthesizing, decisive

Architecture Immutables

ID Principle
I1 Cognitive State Isolation — server manages state
I2 OCTAVE Binding — exportable semantic transcripts
I3 Finite Closure — hard turn/round limits
I4 Verifiable Ledger — SHA-256 hash chain
I5 Safety Override — admin kill switch

Production Deployment Considerations

While debate-hall-mcp implements production-minded patterns (validation, bounded operation, atomic persistence), there are considerations for larger-scale production deployments.

For comprehensive deployment guidance, see Production Deployment Guide.

Current Strengths

  • Deterministic behavior: Rule-based validation with no LLM dependency
  • Resource limits: Hard turn/round limits prevent runaway sessions
  • Atomic persistence: File writes use atomic replace with fsync
  • Concurrency control: File locking with Compare-and-Swap (CAS) for race prevention
  • Content verification: SHA-256 hash chain with optional tamper detection
  • GitHub integration: Rate-limit handling and feature toggles

Quick Configuration

Setting Environment Variable Recommended Value
State directory DEBATE_HALL_STATE_DIR /var/lib/debate-hall/
OpenRouter API OPENROUTER_API_KEY Use secret manager
GitHub token GITHUB_TOKEN Use secret manager

Production Checklist

Before deploying at scale:

  • [ ] Configure DEBATE_HALL_STATE_DIR to dedicated path outside repository
  • [ ] Set proper file permissions (600 for state files, 700 for directory)
  • [ ] Use explicit secret injection (avoid .env in production)
  • [ ] Plan for state backup/retention
  • [ ] Monitor file lock contention if using multiple workers
  • [ ] Consider database backend for >10 concurrent instances (#106)

Recommended Use Cases

Well-suited for:

  • Development and testing workflows
  • Single-instance or low-concurrency deployments
  • Scripted automation with sequential debates
  • Research and experimentation

Requires additional work for:

  • High-concurrency multi-instance production environments
  • Large-scale orchestration with 10+ concurrent debates

Contributing

See CONTRIBUTING.md for development setup, testing, and guidelines.

# Quick dev setup
git clone https://github.com/elevanaltd/debate-hall-mcp
cd debate-hall-mcp
uv venv && source .venv/bin/activate
uv pip install -e ".[dev]"

# Run tests (800+ tests)
pytest

# Quality checks
ruff check src tests && mypy src && black --check src tests

License

Apache-2.0 — Built with HestAI and MCP Python SDK.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选