MCP Catalogs
Home

ultimate_mcp_server vs openrouter-mcp-multimodal

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

ultimate_mcp_server
by Dicklesworthstone
openrouter-mcp-multimodal
by stabgan
Stars★ 149★ 39
30d uses
Score8547
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
AI / LLM ToolsMediaDeveloper Tools
LanguagePythonTypeScript
Last commit2 mo agothis month

ultimate_mcp_server · Summary

Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.

openrouter-mcp-multimodal · Summary

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

ultimate_mcp_server · Use cases

  • Complex document processing and analysis with OCR and structured data extraction
  • Web automation and research across multiple sites with browser control
  • Cost-optimized AI workflows through intelligent task delegation between models

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

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server

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.