Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| WISEPANEL_API_KEY | Yes | Your Wisepanel API key | |
| WISEPANEL_API_URL | No | API base URL (defaults to https://api.wisepanel.ai) | https://api.wisepanel.ai |
Capabilities
Features and capabilities supported by this server
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| wisepanel_start | Start a Wisepanel deliberation. Convenes a panel of AI models (Claude, Gemini, Perplexity) to debate a question from assigned perspectives. Returns run_id immediately. After starting, poll with wisepanel_poll every 10-15 seconds. When an agent_response event appears, briefly summarize that panelist's key argument to the user before polling again. Each panelist participates in multiple conversation nodes, so total responses will exceed panel size. When status is "completed", provide a final synthesis of all perspectives, then ask the user if they'd like to publish to the Wisepanel Commons using wisepanel_publish. Do NOT call wisepanel_result after polling — you already have all the data from poll events. |
| wisepanel_poll | Poll a running Wisepanel deliberation for new events. Long-polls up to 15 seconds, returning immediately when panelist responses arrive. Returns new events since last poll. |
| wisepanel_result | Retrieve the full result of a completed Wisepanel deliberation. Only needed if you did not poll the run to completion (e.g., a run from a previous session). If you polled it live, you already have the data. |
| wisepanel_cancel | Cancel a running Wisepanel deliberation. |
| wisepanel_publish | Publish a completed deliberation to the Wisepanel Commons (wisepanel.ai/commons). Makes the deliberation publicly viewable and shareable. Only works for runs that completed successfully in this session. |
| wisepanel_list_runs | List all Wisepanel deliberation runs tracked in this session. Returns run_id, status, topic, and panel size for each run. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |