Wisepanel MCP Server
An MCP server that gives Claude Code and any MCP-compatible client direct access to Wisepanel's multi-agent deliberation platform.
Run deliberations across Claude, Gemini, and Perplexity. Stream panelist responses in real-time. Publish to the Wisepanel Commons.
Quick Start
Add to your MCP client config (e.g. ~/.mcp.json for Claude Code):
{
"mcpServers": {
"Wisepanel": {
"command": "npx",
"args": ["-y", "wisepanel-mcp"],
"env": {
"WISEPANEL_API_KEY": "your-api-key"
}
}
}
}Get your API key at wisepanel.ai/settings.
Tools
wisepanel_start
Start a deliberation. Convenes a panel of AI models to debate a question from assigned perspectives. Returns run_id immediately.
| Parameter | Type | Description |
|---|---|---|
question |
string (required) | The topic for the panel to deliberate |
topology |
string | Panel size: small (faster), medium (balanced), large (thorough) |
model_group |
string | mixed (random), smart, fast, cheap, informed (search-augmented), large (largest context). Or single provider: openai, anthropic, google, perplexity |
rounds |
number | Deliberation rounds (1-5). More rounds deepen the debate |
context |
string | Additional framing context |
compression |
string | Context compression: none, moderate, aggressive (default) |
short_responses |
boolean | Request concise panelist responses |






