TIDAL Music
FreeNot checkedEnables searching, managing playlists, getting recommendations, and downloading music from TIDAL through natural language commands via the Model Context Protoco
About
Enables searching, managing playlists, getting recommendations, and downloading music from TIDAL through natural language commands via the Model Context Protocol.
README
Claude Code MCP Python License uv
This was originally a fork of yuhuacheng/tidal-mcp but has grown into a more robust implementation of Tidal features. In addition to added Tidal search functionality and the ability to run tidal-dl-ng (if you have it installed), there have been other stability and performance improvements, including batch operations for large track lists.
Features
- 🔍 Music Search: Search TIDAL's catalog for tracks, albums, and artists by name
- ⚡ Batch Operations: Search for multiple songs and create playlists efficiently in a single request
- 🌟 Music Recommendations: Get personalized track recommendations based on your listening history plus your custom criteria.
- ၊၊||၊ Playlist Management: Create, view, and manage your TIDAL playlists
- 📥 Music Downloads: Download tracks, albums, playlists, and favorites via tidal-dl-ng integration
Quick Start
Prerequisites
- Python 3.10+
- uv (Python package manager)
- TIDAL subscription
Installation
Clone this repository:
git clone https://github.com/yourusername/tidal-dl-mcp.git cd tidal-dl-mcpImportant: Do NOT create a virtual environment or run
uv pip install --editable .in this directory. Claude Desktop usesuv runwith--withflags to create an isolated environment automatically. Having a local.venvor editable install can cause version conflicts and hangs.
MCP Client Configuration
Claude Desktop Configuration
To add this MCP server to Claude Desktop, you need to update the MCP configuration file. Here's an example configuration:
(you can specify the port by adding an optional env section with the TIDAL_MCP_PORT environment variable)
{
"mcpServers": {
"TIDAL Integration": {
"command": "/path/to/your/uv",
"env": {
"TIDAL_MCP_PORT": "5100"
},
"args": [
"run",
"--with",
"requests",
"--with",
"mcp[cli]",
"--with",
"flask",
"--with",
"tidalapi",
"mcp",
"run",
"/path/to/your/project/tidal-mcp/mcp_server/server.py"
]
}
}
}
Example scrrenshot of the MCP configuration in Claude Desktop:

Steps to Install MCP Configuration
- Open Claude Desktop
- Go to Settings > Developer
- Click on "Edit Config"
- Paste the modified JSON configuration
- Save the configuration
- Restart Claude Desktop
Suggested Prompt Starters
Once configured, you can interact with your TIDAL account through a LLM by asking questions like:
Search Examples:
- "Search for Bohemian Rhapsody"
- "Find albums by Radiohead"
- "Look up the artist Daft Punk"
Recommendation Examples:
- "Recommend songs like those in this playlist, but slower and more acoustic."
- "Create a playlist based on my top tracks, but focused on chill, late-night vibes."
- "Find songs like these in playlist XYZ but in languages other than English."
Playlist Management Examples:
- "Add this track to my workout playlist"
- "Put these songs in my 90's playlist"
- "Show me all tracks in my road trip playlist"
Batch Playlist Creation Examples:
- "Create a playlist called 'Road Trip Mix' with these songs: Bohemian Rhapsody, Hotel California, Stairway to Heaven, Sweet Home Alabama"
- "Make me a workout playlist with 20 high-energy rock songs from the 80s"
- "Build a dinner party playlist with jazz standards like Take Five, So What, and My Favorite Things"
💡 You can also ask the model to:
- Use more tracks as seeds to broaden the inspiration.
- Return more recommendations if you want a longer playlist.
- Or delete a playlist if you're not into it — no pressure!
Download Examples (requires tidal-dl-ng):
- "Download this track: 12345678"
- "Download the album with ID 87654321"
- "Download all my favorite tracks"
Available Tools
The TIDAL MCP integration provides the following tools:
Core Tools:
tidal_login: Authenticate with TIDAL through browser login flowsearch_tidal: Search TIDAL for tracks, albums, and artists by nameget_favorite_tracks: Retrieve your favorite tracks from TIDALrecommend_tracks: Get personalized music recommendationscreate_tidal_playlist: Create a new playlist in your TIDAL accountadd_tracks_to_playlist: Add tracks to an existing playlistget_user_playlists: List all your playlists on TIDALget_playlist_tracks: Retrieve tracks from a playlist (supports pagination with offset/limit for large playlists)delete_tidal_playlist: Delete a playlist from your TIDAL account
Batch Tools (optimized for large operations):
batch_search_tidal: Search for multiple songs in a single request (up to 100 queries). 10-50x faster than individual searches.create_playlist_from_songs: Create a playlist from a list of song names/descriptions. Automatically searches for each song and adds the best matches.
Download Tools (requires tidal-dl-ng):
download_track: Download a single track by IDdownload_album: Download an entire album by IDdownload_playlist: Download all tracks from a playlistdownload_favorites: Download all favorites (tracks, albums, artists, or videos)
Security & Privacy
This application accesses your TIDAL account data (favorites, playlists, search history) through TIDAL's official API. Key security notes:
- OAuth tokens are stored in your system's temp directory (
<temp>/tidal-session-oauth.json) - Network binding is localhost-only (127.0.0.1) - not accessible from other machines
- No telemetry - your data is never sent to third parties
- Third-party libraries - uses community-maintained tidalapi, not an official TIDAL SDK
See SECURITY.md for full details on data access, storage, and reporting vulnerabilities.
Troubleshooting
If the MCP server hangs when Claude Desktop tries to call tools:
Delete any local Python environment artifacts:
# Remove these if they exist in the project directory rm -rf .venv rm -rf tidal_mcp.egg-info rm -f uv.lock # Clear Python cache find . -type d -name __pycache__ -exec rm -rf {} +Check for port conflicts (default port is 5050):
# Windows netstat -ano | findstr ":5050" # Kill any conflicting processes taskkill /PID <pid> /FRestart Claude Desktop after making changes
Check logs at:
- Windows:
%APPDATA%\Claude\logs\mcp-server-tidal.log - macOS/Linux:
~/.claude/logs/mcp-server-tidal.log
- Windows:
License
Acknowledgements
- yuhuacheng/tidal-mcp - Original TIDAL MCP implementation
- Model Context Protocol (MCP)
- TIDAL Python API
Installing TIDAL Music
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/raydollete/tidal-dl-mcpFAQ
Is TIDAL Music MCP free?
Yes, TIDAL Music MCP is free — one-click install via Unyly at no cost.
Does TIDAL Music need an API key?
No, TIDAL Music runs without API keys or environment variables.
Is TIDAL Music hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install TIDAL Music in Claude Desktop, Claude Code or Cursor?
Open TIDAL Music on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Omni Video
An MCP server that transforms LLM-enabled IDEs into professional video editors by pre-processing footage into text proxies, generating motion graphics via HTML/
by buildwithtazaARA
Generate images, video and audio from any AI agent — one connector.
by ARAYouTube
Transcripts, channel stats, search
by YouTubeEverArt
AI image generation using various models.
by modelcontextprotocolCompare TIDAL Music with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All media MCPs
