mcp-arr vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-arr by aplaceforallmystuff | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 137 | ★ 149 |
| 30d uses | — | — |
| Score | 50 | 85 |
| Official | — | — |
| Categories | MediaProductivityAI / LLM Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | JavaScript | Python |
| Last commit | 1 mo ago | 2 mo ago |
mcp-arr · Summary
MCP server for unified management of *arr media suite including Sonarr, Radarr, Lidarr, and Prowlarr.
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.
mcp-arr · Use cases
- Check library status across all *arr applications with natural language queries
- Search and add content to any *arr service from a unified interface
- Monitor download progress and upcoming releases across TV, movies, and music
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
mcp-arr · Install
Installation
**Using npm (Recommended)**
npx mcp-arr-server**Remote HTTP Mode**
MCP_TRANSPORT=http PORT=3000 npx mcp-arr-server**For Claude Desktop** Add to your Claude Desktop config file:
{
"mcpServers": {
"arr": {
"command": "npx",
"args": ["-y", "mcp-arr-server"],
"env": {
"SONARR_URL": "http://localhost:8989",
"SONARR_API_KEY": "your-sonarr-api-key",
"RADARR_URL": "http://localhost:7878",
"RADARR_API_KEY": "your-radarr-api-key",
"LIDARR_URL": "http://localhost:8686",
"LIDARR_API_KEY": "your-lidarr-api-key",
"PROWLARR_URL": "http://localhost:9696",
"PROWLARR_API_KEY": "your-prowlarr-api-key"
}
}
}
}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_server