MCP Catalogs
Home

Navidrome-MCP vs everything

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

Navidrome-MCP
by Blakeem
everything
by modelcontextprotocol
Stars★ 68★ 85,748
30d uses
Score4677
Official
Categories
MediaAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

Navidrome-MCP · Summary

MCP server for controlling Navidrome music library with conversation-based playback, discovery tools, and web remote control.

everything · Summary

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

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

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

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-mcp

Configure 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)"
      }
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.