Wisepanel MCP Server

Multi-agent deliberation across Claude, Gemini, and Perplexity. Stream and publish.

Local serverstdio

What is the Wisepanel MCP server?

Most developer tooling work still happens through a UI a human drives. Wisepanel MCP server moves it into the conversation instead. Multi-agent deliberation across Claude, Gemini, and Perplexity. Stream and publish.

The short version

Run deliberations across Claude, Gemini, and Perplexity. Stream panelist responses in real-time. Publish to the Wisepanel Commons.

Getting it running

npm on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

The tools it exposes

The server publishes 6 tools. What each one is for:

  • wisepanel_start — Start a deliberation. Convenes a panel of AI models to debate a question from assigned perspectives. Returns run_id immediately
  • wisepanel_poll — Long-polls a running deliberation (waits up to 15s for new events). Returns panelist responses as they arrive
  • wisepanel_result — Retrieve full results of a completed deliberation. Only needed if you didn't poll it live
  • wisepanel_cancel — The wisepanel_cancel tool exposed by this server
  • wisepanel_publish — Publish a completed deliberation to the Wisepanel Commons. Makes it publicly viewable and shareable
  • wisepanel_list_runs — The wisepanel_list_runs tool exposed by this server

What it needs from you

Configuration is passed through the environment: WISEPANEL_API_KEY, WISEPANEL_API_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Wisepanel's toolset — wisepanel_start, wisepanel_poll, wisepanel_result and 3 more — is a fair guide to whether it matches your workflow. It is maintained by ikoskela; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
wisepanel_startStart a deliberation. Convenes a panel of AI models to debate a question from assigned perspectives. Returns run_id immediately.
wisepanel_pollLong-polls a running deliberation (waits up to 15s for new events). Returns panelist responses as they arrive.
wisepanel_resultRetrieve full results of a completed deliberation. Only needed if you didn't poll it live.
wisepanel_cancelThe wisepanel_cancel tool exposed by this server.
wisepanel_publishPublish a completed deliberation to the [Wisepanel Commons](https://wisepanel.ai/commons). Makes it publicly viewable and shareable.
wisepanel_list_runsThe wisepanel_list_runs tool exposed by this server.

How to install the Wisepanel MCP server

{
  "mcpServers": {
    "Wisepanel": {
      "command": "npx",
      "args": ["-y", "wisepanel-mcp"],
      "env": {
        "WISEPANEL_API_KEY": "your-api-key"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
WISEPANEL_API_KEYCredential the server authenticates with.Yes
WISEPANEL_API_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Wisepanel to wisepanel start.
  • Use Wisepanel to wisepanel poll.
  • Use Wisepanel to wisepanel result.

Frequently asked questions

It connects Wisepanel to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (wisepanel_start, wisepanel_poll, wisepanel_result, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Wisepanel directly.