Skip to main content
Glama

fusion-mcp

A zero-dependency MCP server that exposes OpenRouter Fusion as a tool any agent can call.

Fusion sends your prompt to a panel of models in parallel (with web search), a judge model compares their answers, and you get back one synthesized answer — stronger than any single model. This wraps it so Claude Code (or any MCP client) can reach Fusion directly instead of going through the OpenRouter web UI.

Tool

fusion_ask

arg

required

description

prompt

The question or task for the Fusion panel.

analysis_models

1–8 model slugs forming the panel. Omit for Fusion's default preset.

judge_model

Model that synthesizes the panel's answers. Defaults to the first panel model.

preset

Curated preset: general-high or general-budget.

max_tool_calls

Tool iterations per panel model (1–16, default 8).

Fusion runs several completions per call (panel + judge), so it costs more than a single model call. Use it where being wrong is costly: research, critique, decisions.

Related MCP server: cognition-wheel

Setup

Requires Node ≥ 18 and an OpenRouter API key.

export OPENROUTER_API_KEY=sk-or-...

Wire into Claude Code

claude mcp add fusion -e OPENROUTER_API_KEY=sk-or-... -- node /Users/yoshikondo/fusion-mcp/server.mjs

Or add to your MCP config manually:

{
  "mcpServers": {
    "fusion": {
      "command": "node",
      "args": ["/Users/yoshikondo/fusion-mcp/server.mjs"],
      "env": { "OPENROUTER_API_KEY": "sk-or-..." }
    }
  }
}

Then in a session: "use fusion_ask to research X".

Test

npm test

The test suite spins up a real local HTTP server standing in for OpenRouter and drives a real child-process MCP server over real stdio — nothing internal is mocked.

License

MIT

A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    An MCP server that enables users to query, compare, and synthesize responses from multiple local and cloud LLMs simultaneously using existing subscriptions. It provides tools for parallel model evaluation, consensus polling with an LLM-as-judge, and response synthesis across different model providers.
    Last updated
    8
    32
    15
    MIT

View all related MCP servers

Related MCP Connectors

  • Hosted MCP server for LLM cost estimation, model comparison, and budget-aware routing.

  • AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.

  • A paid remote MCP for OpenAI Codex agent coordination MCP, built to return verdicts, receipts, usage

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/yksanjo/fusion-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server