Navidrome-MCP vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
Navidrome-MCP by Blakeem | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 68 | ★ 149 |
| 30d uses | — | — |
| Score | 46 | 85 |
| Official | — | — |
| Categories | MediaAI / LLM ToolsProductivity | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
Navidrome-MCP · Summary
MCP server for controlling Navidrome music library with conversation-based playback, discovery tools, and web remote control.
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.
Navidrome-MCP · Use cases
- Control your music library with natural language commands through Claude Desktop or other MCP clients
- Create and manage playlists based on listening patterns and music discovery
- Stream music locally and control playback through the web UI from any device
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
Navidrome-MCP · Install
Installation
Prerequisites
- Node.js 20+
- A running Navidrome server
- An MCP-compatible client (Claude Desktop, Claude Code, Cursor, etc.)
- Optional: mpv for local audio playback
Quick Setup
npm install -g navidrome-mcpConfigure Claude Desktop
Edit claude_desktop_config.json:
{
"mcpServers": {
"navidrome": {
"command": "npx",
"args": ["navidrome-mcp"],
"env": {
"NAVIDROME_URL": "http://your-server:4533",
"NAVIDROME_USERNAME": "your_username",
"NAVIDROME_PASSWORD": "your_password",
"LASTFM_API_KEY": "your_api_key",
"RADIO_BROWSER_USER_AGENT": "Navidrome-MCP/2.0 (+https://github.com/Blakeem/Navidrome-MCP)",
"LYRICS_PROVIDER": "lrclib",
"LRCLIB_USER_AGENT": "Navidrome-MCP/2.0 (+https://github.com/Blakeem/Navidrome-MCP)"
}
}
}
}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