◈ DEVELOPER API

BUILD WITH COUNCIL

Council is an API. Call it from scripts, agents, pipelines, bots — anything that makes decisions.

API QUICK START

curl -X POST https://api.councilzero.com/v1/deliberate \
  -H "Authorization: Bearer $COUNCIL_TOKEN" \
  -d '{
    "question": "Should we approve this PR?",
    "context": "Diff: +142 -38 lines in auth module",
    "mode": "adversarial",
    "max_rounds": 3
  }'

# → { "synthesis": "DECISION: Approve with conditions..." }

INTEGRATION PATTERNS

Real-world systems that call Council when they need a decision.

MCP & AGENT TOOLS

COMING SOON

Council as a first-class tool in your AI agent's toolkit

Any AI agent that supports MCP can call Council for multi-perspective deliberation. Your agent gets a second opinion — from 101 specialized agents — before making critical decisions.

mcp_config.json
{
  "mcpServers": {
    "council": {
      "command": "council-mcp",
      "args": ["--ecosystem", "my-council"],
      "env": { "COUNCIL_TOKEN": "your-token" }
    }
  }
}

START BUILDING

API access from Pro ($5/mo)