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_KEYrequiredsecretYour Wisepanel API key. Generate one at wisepanel.ai/settings.
WISEPANEL_API_URLAPI 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-mcpRelated MCP servers
Fixes DPI coordinate scaling for Windows desktop automation MCP servers.
View repository →