MCP Catalogs
Home

everything vs openrouter-mcp-multimodal

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
openrouter-mcp-multimodal
by stabgan
Stars★ 85,748★ 39
30d uses
Score7747
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsMediaDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

Official MCP test server exercising all protocol features for client builders.

openrouter-mcp-multimodal · Summary

MCP server for OpenRouter providing text, image, audio, and video analysis and generation with 300+ LLMs.

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

openrouter-mcp-multimodal · Use cases

  • Content creators generating and analyzing multimedia content including text, images, audio, and video
  • Developers integrating OpenRouter's multimodal capabilities into their applications through MCP
  • Teams using various AI clients (Claude Desktop, Cursor, etc.) to access 300+ LLMs with advanced tooling

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

openrouter-mcp-multimodal · Install

Installation

Quick Install
npx -y @stabgan/openrouter-mcp-multimodal

Requires OPENROUTER_API_KEY environment variable.

Claude Desktop Configuration
{
  "mcpServers": {
    "openrouter": {
      "command": "npx",
      "args": ["-y", "@stabgan/openrouter-mcp-multimodal"],
      "env": {
        "OPENROUTER_API_KEY": "sk-or-v1-..."
      }
    }
  }
}
Docker
{
  "mcpServers": {
    "openrouter": {
      "command": "docker",
      "args": [
        "run", "--rm", "-i",
        "-e", "OPENROUTER_API_KEY=sk-or-v1-...",
        "stabgan/openrouter-mcp-multimodal:latest"
      ]
    }
  }
}
Global Install
npm install -g @stabgan/openrouter-mcp-multimodal

Then configure with:

{
  "mcpServers": {
    "openrouter": {
      "command": "openrouter-multimodal",
      "env": { "OPENROUTER_API_KEY": "sk-or-v1-..." }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.