MCP Multi Model MCP Server

MCP server for Claude Code — parallel multi-model queries, smart routing, image/video gen across OpenAI (GPT-5, GPT Image), Gemini (Imagen 4, Veo)

Local serverstdioGo

What is the MCP Multi Model MCP server?

MCP server for Claude Code — parallel multi-model queries, smart routing, image/video gen across OpenAI (GPT-5, GPT Image), Gemini (Imagen 4, Veo), DeepSeek, Kimi & 12+ providers. The mcp multi model mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 14 defined tools rather than through you.

What it actually does

One MCP server. All the models you need. Zero tab-switching.

Its toolset

Everything the assistant can do here goes through one of these:

  • ask_ai — Query any model — unified entry with temperature / top_p control
  • ask_deepseek — Query DeepSeek directly
  • ask_gemini — Query Gemini directly
  • ask_kimi — Query Kimi directly
  • ask_all — Query all models in parallel, compare results
  • ask_both — Query any two models in parallel
  • delegate — Smart routing — auto-picks the best model for the task
  • generate_image — Text → image via Gemini Imagen
  • generate_video — Text → video via Gemini Veo
  • translate — CN ↔ EN translation
  • research — Deep research with web search
  • check_health — Ping all models, report status and latency

Adding it to your client

Installation goes through your MCP client rather than a global install: point it at mcp-multi-model on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Configuration

You will need 3 environment variables: DEEPSEEK_API_KEY, GEMINI_API_KEY, OPENAI_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

When to reach for it

Plenty of search and retrieval 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. MCP Multi Model's toolset — ask_ai, ask_deepseek, ask_gemini and 11 more — is a fair guide to whether it matches your workflow. It is maintained by K1vin1906; 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.

Caveats

  • 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.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch MCP Multi Model.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mcp multi model mcp server does with a few real requests.

Available tools

ToolWhat it does
ask_aiQuery any model — unified entry with temperature / top_p control
ask_deepseekQuery DeepSeek directly
ask_geminiQuery Gemini directly
ask_kimiQuery Kimi directly
ask_allQuery all models in parallel, compare results
ask_bothQuery any two models in parallel
delegateSmart routing — auto-picks the best model for the task
generate_imageText → image via Gemini Imagen
generate_videoText → video via Gemini Veo
translateCN ↔ EN translation
researchDeep research with web search
check_healthPing all models, report status and latency
imagen-4-fast:predict
imagen-4-ultra:predict

How to install the MCP Multi Model MCP server

{
  "mcpServers": {
    "multi-model": {
      "command": "npx",
      "args": ["-y", "mcp-multi-model"],
      "env": {
        "DEEPSEEK_API_KEY": "sk-...",
        "GEMINI_API_KEY": "AI..."
      }
    }
  }
}

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

Configuration

VariableDescriptionRequired
DEEPSEEK_API_KEYCredential the server authenticates with.Yes
GEMINI_API_KEYCredential the server authenticates with.Yes
OPENAI_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP Multi Model to ask ai.
  • Use MCP Multi Model to ask deepseek.
  • Use MCP Multi Model to ask gemini.

Frequently asked questions

12+ providers are preconfigured, including OpenAI, Gemini, DeepSeek, Kimi, Grok, Perplexity, Anthropic (via OpenRouter), Mistral, Groq, Qwen, GLM, Together, and local runners (Ollama, LM Studio, llama.cpp, vLLM). Models without an API key are skipped automatically.