PluginBench
MCP Server

Wisepanel MCP Server

io.github.ikoskela/wisepanel-mcp

What is the Wisepanel MCP server?

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

How to install Wisepanel

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • WISEPANEL_API_KEY
    required
    secret

    Your Wisepanel API key. Generate one at wisepanel.ai/settings.

  • WISEPANEL_API_URL

    API base URL. Defaults to https://api.wisepanel.ai

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "wisepanel-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "wisepanel-mcp"
      ],
      "env": {
        "WISEPANEL_API_KEY": "<YOUR_WISEPANEL_API_KEY>",
        "WISEPANEL_API_URL": "<YOUR_WISEPANEL_API_URL>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "wisepanel-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "wisepanel-mcp"
      ],
      "env": {
        "WISEPANEL_API_KEY": "<YOUR_WISEPANEL_API_KEY>",
        "WISEPANEL_API_URL": "<YOUR_WISEPANEL_API_URL>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "wisepanel-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "wisepanel-mcp"
      ],
      "env": {
        "WISEPANEL_API_KEY": "<YOUR_WISEPANEL_API_KEY>",
        "WISEPANEL_API_URL": "<YOUR_WISEPANEL_API_URL>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "wisepanel-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "wisepanel-mcp"
      ],
      "env": {
        "WISEPANEL_API_KEY": "<YOUR_WISEPANEL_API_KEY>",
        "WISEPANEL_API_URL": "<YOUR_WISEPANEL_API_URL>"
      }
    }
  }
}
Claude Code
claude mcp add wisepanel-mcp --env WISEPANEL_API_KEY=<YOUR_WISEPANEL_API_KEY> --env WISEPANEL_API_URL=<YOUR_WISEPANEL_API_URL> -- npx -y wisepanel-mcp

Related MCP servers

Fixes DPI coordinate scaling for Windows desktop automation MCP servers.

View repository →