TIDAL Music MCP
Provides tools for searching TIDAL's catalog, managing playlists, getting recommendations, and downloading music via tidal-dl-ng integration.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@TIDAL Music MCPSearch for Bohemian Rhapsody"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
TIDAL Music MCP
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
Related MCP server: TIDAL MCP Server
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.logmacOS/Linux:
~/.claude/logs/mcp-server-tidal.log
License
Acknowledgements
yuhuacheng/tidal-mcp - Original TIDAL MCP implementation
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/raydollete/tidal-dl-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server