Cross Llm MCP Server

A Model Context Protocol (MCP) server that provides access to multiple Large Language Model (LLM) APIs including ChatGPT, Claude, DeepSeek, Gemini

Remote serverstreamable-httpTypeScript

What is the Cross Llm MCP MCP server?

Most AI and media services work still happens through a UI a human drives. Cross Llm MCP MCP server moves it into the conversation instead. A Model Context Protocol (MCP) server that provides access to multiple Large Language Model (LLM) APIs including ChatGPT, Claude, DeepSeek, Gemini, Grok, Kimi, Perplexity, Mistral, and Hugging Face Inference Router.

The short version

  • 🌐 9 LLM Providers – ChatGPT, Claude, DeepSeek, Gemini, Grok, Kimi, Perplexity, Mistral, Hugging Face
  • 🎯 Smart Model Selection – Tag-based preferences (coding, business, reasoning, math, creative, general)
  • 📊 Prompt Logging – Track all prompts with history, statistics, and analytics
  • 💰 Cost Optimization – Choose flagship or cheaper models based on preference
  • Easy Setup – One-click install in Cursor or simple manual setup
  • 🔄 Call All LLMs – Get responses from all providers simultaneously

The tools it exposes

The server publishes 5 tools. What each one is for:

What it needs from you

Configuration is passed through the environment: OPENAI_API_KEY, ANTHROPIC_API_KEY, DEEPSEEK_API_KEY, GEMINI_API_KEY, XAI_API_KEY, KIMI_API_KEY, PERPLEXITY_API_KEY, MISTRAL_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

How it compares

This sits in the AI and media services group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Cross Llm MCP's toolset — OpenAI, Anthropic, DeepSeek and 2 more — is a fair guide to whether it matches your workflow. It is maintained by jamesanz; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
OpenAI[https://platform.openai.com/api-keys](https://platform.openai.com/api-keys)
Anthropic[https://console.anthropic.com/](https://console.anthropic.com/)
DeepSeek[https://platform.deepseek.com/](https://platform.deepseek.com/)
Perplexity[https://www.perplexity.ai/hub](https://www.perplexity.ai/hub)
Mistral[https://console.mistral.ai/](https://console.mistral.ai/)

How to install the Cross Llm MCP MCP server

{
  "mcpServers": {
    "cross-llm": {
      "command": "npx",
      "args": ["-y", "cross-llm-mcp"],
      "env": {
        "OPENAI_API_KEY": "your-value",
        "ANTHROPIC_API_KEY": "your-value",
        "DEEPSEEK_API_KEY": "your-value",
        "GEMINI_API_KEY": "your-value",
        "XAI_API_KEY": "your-value",
        "KIMI_API_KEY": "your-value",
        "PERPLEXITY_API_KEY": "your-value",
        "MISTRAL_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
OPENAI_API_KEYCredential the server authenticates with.Yes
ANTHROPIC_API_KEYCredential the server authenticates with.Yes
DEEPSEEK_API_KEYCredential the server authenticates with.Yes
GEMINI_API_KEYCredential the server authenticates with.Yes
XAI_API_KEYCredential the server authenticates with.Yes
KIMI_API_KEYCredential the server authenticates with.Yes
PERPLEXITY_API_KEYCredential the server authenticates with.Yes
MISTRAL_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Cross Llm MCP to OpenAI.
  • Use Cross Llm MCP to Anthropic.
  • Use Cross Llm MCP to DeepSeek.

Frequently asked questions

It connects Cross Llm MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (OpenAI, Anthropic, DeepSeek, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Cross Llm MCP directly.