Council is an API. Call it from scripts, agents, pipelines, bots — anything that makes decisions.
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..." }Real-world systems that call Council when they need a decision.
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.
{
"mcpServers": {
"council": {
"command": "council-mcp",
"args": ["--ecosystem", "my-council"],
"env": { "COUNCIL_TOKEN": "your-token" }
}
}
}