npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

panel-mcp-server

v0.1.0

Published

MCP server providing LLM council workflow tools for multi-model queries, debates, and reviews

Downloads

119

Readme

Panel MCP Server

An MCP (Model Context Protocol) server that provides LLM council workflow tools for multi-model queries, debates, and reviews.

Overview

Panel MCP Server enables AI clients (like Claude) to orchestrate multi-model workflows. The calling LLM uses these tools to query multiple models in parallel, run structured debates, get critiques, and then synthesize the results itself.

Key insight: The MCP server exposes tools that return structured multi-model responses. The calling LLM decides when/how to use these tools and can further process, compare, or synthesize the collected responses using its own reasoning.

Features

  • council_query: Query multiple LLMs in parallel, returning all responses for synthesis
  • debate: Run structured adversarial debates between two models
  • critique: Get one model to critique another's response
  • query_model: Query a single model directly
  • list_models: Discover available models by provider
  • health_check: Check provider status and connectivity

Provider Support

Dual-Mode Provider System

  1. OpenRouter mode (recommended): Use openrouter/ prefix for any of 300+ models

    • openrouter/anthropic/claude-sonnet-4
    • openrouter/openai/gpt-4o
    • openrouter/meta-llama/llama-3.3-70b-instruct
  2. Direct mode: Use provider prefix for direct API calls (lower latency, no fee)

    • openai/gpt-4o - calls OpenAI API directly
    • anthropic/claude-sonnet-4-20250514 - calls Anthropic API directly
    • google/gemini-2.5-pro - calls Google API directly

Default Panel: GPT-4o + Claude Sonnet 4 + Gemini 2.5 Pro

Installation

npm install panel-mcp-server
# or
pnpm add panel-mcp-server

Configuration

Set at least one API key:

# Required (at least one)
export OPENROUTER_API_KEY=sk-or-...

# Optional direct providers (lower latency)
export OPENAI_API_KEY=sk-...
export ANTHROPIC_API_KEY=sk-ant-...
export GOOGLE_GENERATIVE_AI_API_KEY=...
export MISTRAL_API_KEY=...

# Optional configuration
export PANEL_DEFAULT_MODELS=gpt-4o,claude-sonnet-4-20250514,gemini-2.5-pro
export PANEL_MAX_CONCURRENT=5
export PANEL_REQUEST_TIMEOUT_MS=60000

Usage

As MCP Server (stdio)

panel-mcp-server --stdio

As MCP Server (HTTP)

panel-mcp-server --http 8080

Claude Desktop Configuration

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "panel": {
      "command": "npx",
      "args": ["panel-mcp-server", "--stdio"],
      "env": {
        "OPENROUTER_API_KEY": "your-key-here"
      }
    }
  }
}

Tools

council_query

Query multiple LLM models in parallel. Returns all responses for synthesis.

{
  prompt: string,
  models?: string[],  // defaults to GPT-4o, Claude Sonnet 4, Gemini 2.5 Pro
  systemPrompt?: string
}

debate

Run a structured adversarial debate between two models.

{
  topic: string,
  affirmativeModel: string,
  negativeModel: string,
  rounds?: number  // 1-5, default: 2
}

critique

Have one model critique a response.

{
  originalPrompt: string,
  response: string,
  criticModel: string,
  aspects?: string[]  // e.g., ["accuracy", "completeness"]
}

query_model

Query a single model directly.

{
  prompt: string,
  model: string,
  systemPrompt?: string
}

list_models

List available models by provider.

{
  provider?: "all" | "openrouter" | "openai" | "anthropic" | "google" | "mistral"
}

health_check

Check provider status.

{
}

Development

# Install dependencies
pnpm install

# Validate (format + lint + test + build)
pnpm validate

# Development mode
pnpm dev

# Run tests
pnpm test

Built With

License

MIT