by blakeem
Navidrome server streamer for complete music library management with playlists, playback, search, radio, lyrics & Last.f
Connects AI assistants to your Navidrome music server for natural language control of your personal music library. Create playlists, search music, control playback, and discover new content through conversation.
Navidrome is a community-built MCP server published by blakeem that provides AI assistants with tools and capabilities via the Model Context Protocol. Navidrome server streamer for complete music library management with playlists, playback, search, radio, lyrics & Last.f It is categorized under other, analytics data.
You can install Navidrome in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
AGPL-3.0
Navidrome is released under the AGPL-3.0 license.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Useful MCP listing: Navidrome is the kind of server we cite when onboarding engineers to host + tool permissions.
Navidrome is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
I recommend Navidrome for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Navidrome is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
According to our notes, Navidrome benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
We wired Navidrome into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Navidrome reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
I recommend Navidrome for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
We wired Navidrome into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
According to our notes, Navidrome benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
showing 1-10 of 70
Transform your Navidrome music server with an AI-powered music assistant. This MCP (Model Context Protocol) server enables Claude, ChatGPT, and other AI assistants to interact with your personal music library through natural language, offering intelligent playlist creation, music discovery, and library management.
Imagine having an AI assistant that truly understands your music taste. This MCP server enables AI assistants to:
This isn't just another music tool – it's your personal music curator powered by AI.
Additional for manual build:
The easiest way to get started is using the published npm package, which auto-updates on launch:
npm install -g navidrome-mcp
📦 Package: navidrome-mcp on npm
This installs the MCP server globally and keeps it up-to-date automatically.
For development or custom builds:
git clone https://github.com/Blakeem/Navidrome-MCP.git
cd navidrome-mcp
pnpm install
pnpm build
Find your configuration file:
%APPDATA%/Claude/claude_desktop_config.json~/Library/Application Support/Claude/claude_desktop_config.json~/.config/Claude/claude_desktop_config.jsonAdd the Navidrome MCP server:
{
"mcpServers": {
"navidrome": {
"command": "npx",
"args": ["navidrome-mcp"],
"env": {
"NAVIDROME_URL": "http://your-server:4533",
"NAVIDROME_USERNAME": "your_username",
"NAVIDROME_PASSWORD": "your_password",
"NAVIDROME_DEFAULT_LIBRARIES": "1,2", // Optional: Set default active libraries (comma-separated IDs)
"LASTFM_API_KEY": "your_api_key", // Get your own at https://www.last.fm/api/account/create
"RADIO_BROWSER_USER_AGENT": "Navidrome-MCP/1.0 (+https://github.com/Blakeem/Navidrome-MCP)",
"LYRICS_PROVIDER": "lrclib",
"LRCLIB_USER_AGENT": "Navidrome-MCP/1.0 (+https://github.com/Blakeem/Navidrome-MCP)"
}
}
}
}
{
"mcpServers": {
"navidrome": {
"command": "node",
"args": ["/absolute/path/to/navidrome-mcp/dist/index.js"],
"env": {
"NAVIDROME_URL": "http://your-server:4533",
"NAVIDROME_USERNAME": "your_username",
"NAVIDROME_PASSWORD": "your_password",
"NAVIDROME_DEFAULT_LIBRARIES": "1,2", // Optional: Set default active libraries (comma-separated IDs)
"LASTFM_API_KEY": "your_api_key", // Get your own at https://www.last.fm/api/account/create
"RADIO_BROWSER_USER_AGENT": "Navidrome-MCP/1.0 (+https://github.com/Blakeem/Navidrome-MCP)",
"LYRICS_PROVIDER": "lrclib",
"LRCLIB_USER_AGENT": "Navidrome-MCP/1.0 (+https://github.com/Blakeem/Navidrome-MCP)"
}
}
}
}
Important:
npx navidrome-mcp which auto-updates on each launchNAVIDROME_DEFAULT_LIBRARIES to set default active libraries (e.g., "1" for one library, "1,2,3" for multiple)
set_active_libraries toolnpxnavidrome-mcpnode/absolute/path/to/navidrome-mcp/dist/index.jsPrerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.