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 | — | — |
| Score | 85 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsMediaDeveloper Tools |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this 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
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_serveropenrouter-mcp-multimodal · Install
Installation
Quick Install
npx -y @stabgan/openrouter-mcp-multimodalRequires 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-multimodalThen configure with:
{
"mcpServers": {
"openrouter": {
"command": "openrouter-multimodal",
"env": { "OPENROUTER_API_KEY": "sk-or-v1-..." }
}
}
}