MCP Catalogs
Home

Navidrome-MCP vs filesystem

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

Navidrome-MCP
by Blakeem
filesystem
by modelcontextprotocol
Stars★ 68★ 85,748
30d uses
Score4677
Official
Categories
MediaAI / LLM ToolsProductivity
File SystemDeveloper ToolsProductivity
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.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.