MCP server for myCouncil — run multi-LLM debates from Claude Code, Claude Desktop, Cursor, and other MCP clients.
Project description
mycouncil — MCP server
Run multi-LLM myCouncil debates from Claude Code, Claude Desktop, Cursor, and any other MCP-aware client.
Thin wrapper over the public myCouncil API. Rounds, billing, and auto-config mode live on your account — the MCP server just relays calls.
Setup
- Sign up at https://app.mycouncil.xyz (10 free rounds).
- Pick your auto-config mode under Account → Auto-config Settings
(
standardis free;advancedcosts 1 round per call). - Create an API key under Account → API. The key is shown once — save it.
- Register the MCP server in your client (see below).
Nothing to install — uvx fetches the package on first use. Requires
uv (curl -LsSf https://astral.sh/uv/install.sh | sh).
Claude Code
claude mcp add mycouncil \
--env MYCOUNCIL_API_KEY=mc_your_key_here \
-- uvx mycouncil
Claude Desktop / Cursor
In claude_desktop_config.json or ~/.cursor/mcp.json:
{
"mcpServers": {
"mycouncil": {
"command": "uvx",
"args": ["mycouncil"],
"env": { "MYCOUNCIL_API_KEY": "mc_your_key_here" }
}
}
}
Tools
| Tool | What it does |
|---|---|
mycouncil_balance |
Remaining rounds + current auto-config mode. |
mycouncil_auto_config |
Generate a session config from a query. Returns roles + temperatures + tier. Concrete model IDs are not exposed — the planner and the server pick them based on the tier. |
mycouncil_debate_start |
Start a debate, return job_id. Accepts a config returned by mycouncil_auto_config (with or without edits). |
mycouncil_debate_status |
Poll a debate by job_id. |
mycouncil_debate |
Blocking: start, poll, return the finished result. return_as: pdf (default) / transcript / link. |
mycouncil_share |
Share or export an existing conversation: format=link (public URL) or format=pdf (file on disk). |
How tiers work
The planner LLM picks one of three operating tiers based on the question:
- fast — quick + cheap models, for simple / casual questions.
- balanced — sweet spot. Default for typical analytical questions.
- deep — slow + reasoning-heavy models, for high-stakes / complex / irreversible decisions. Only available in advanced auto-config mode.
Tiers are an operating mode, not a quality rank — deep does not always
beat balanced in absolute terms, it just takes more time and money. The
planner is instructed to lean toward balanced and not escalate by default.
After mycouncil_auto_config, you may edit config["tier"] and roles
before passing it to mycouncil_debate(_start). MCP fills concrete models
from the tier locally; the agent never sees specific provider names.
Quotas
- Three-stage council: 1 round per debate, deducted at start.
mycouncil_auto_configis free instandardmode, 1 round inadvancedmode (refunded if the planner LLM fails).mycouncil_debateauto-configures internally if you don't pass a config — callingmycouncil_auto_configfirst only makes sense to preview / tweak the config. Inadvancedmode that bills you twice.
Environment variables
| Variable | Required | Default | Notes |
|---|---|---|---|
MYCOUNCIL_API_KEY |
yes | — | Your mc_* key from Account → API. |
MYCOUNCIL_BASE_URL |
no | https://app.mycouncil.xyz |
Override for staging / self-hosted. |
Examples
Simplest path — let myCouncil pick everything:
Run
mycouncil_debateon "Should we migrate our backend from FastAPI to Go?" and return the result as a PDF in./review.pdf.
Preview and escalate the tier before running (advanced mode):
Use
mycouncil_auto_configfor "Replace our entire ML infra with a custom RAG system, $3M budget". If the planner returnstier: balanced, change it todeepand runmycouncil_debatewith the edited config.
Async polling:
Start the debate with
mycouncil_debate_start, then pollmycouncil_debate_statusevery minute until status iscompleteorfailed.
License
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 mycouncil-0.1.0.tar.gz.
File metadata
- Download URL: mycouncil-0.1.0.tar.gz
- Upload date:
- Size: 14.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.26
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61df34cebabf2b31870bd0519afe41e500143252878bf25b7a77859137422996
|
|
| MD5 |
b2e2993c9221eb1c95627ae49e439e04
|
|
| BLAKE2b-256 |
5839ee546a52a37af6551abd8865098b4c9a94785b3e8da5009d4a719c044591
|
File details
Details for the file mycouncil-0.1.0-py3-none-any.whl.
File metadata
- Download URL: mycouncil-0.1.0-py3-none-any.whl
- Upload date:
- Size: 19.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.26
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79f12a4b2154d626ec7de536f25d5550cf6dff9d578f43ced7d9695337da009b
|
|
| MD5 |
c22307aa40c9e0363367a2a6718a6720
|
|
| BLAKE2b-256 |
3edf99fcf74172fb5069d33b5351cab21d006495f319b0181332b8cc5a89c04f
|