Connects Claude to TIDAL's music streaming service through their API. Exposes search across tracks, albums, artists, and playlists, plus full playlist management including creation, editing, reordering, and deletion. The main workflow centers on recommendations: you can ask for tracks similar to your recent favorites but filtered by criteria like release year, tempo, or mood, and the LLM uses TIDAL's similarity API to build custom playlists directly in your account. This is a community fork that adds Docker support, pagination for large playlists, and search functionality missing from the original. Authentication happens via OAuth with a browser flow, and sessions persist across restarts. Useful when you want programmatic music curation that goes beyond platform defaults.
Public tool metadata for what this MCP can expose to an agent.
tidal_searchSearch Tidal for artists, albums, tracks, videos, or playlists2 paramsSearch Tidal for artists, albums, tracks, videos, or playlists
typestringartist · album · track · video · playlistquerystringtidal_search_suggestionsGet search suggestions and direct hits for a query1 paramsGet search suggestions and direct hits for a query
querystringtidal_artist_infoGet artist details including biography1 paramsGet artist details including biography
artistIdstringtidal_artist_tracksGet top tracks for an artist1 paramsGet top tracks for an artist
artistIdstringtidal_artist_albumsGet albums by an artist1 paramsGet albums by an artist
artistIdstringtidal_similar_artistsFind artists similar to a given artist1 paramsFind artists similar to a given artist
artistIdstringtidal_artist_radioGet radio playlists based on an artist1 paramsGet radio playlists based on an artist
artistIdstringtidal_track_infoGet track details including artists, album, BPM, key1 paramsGet track details including artists, album, BPM, key
trackIdstringtidal_track_radioGet radio playlists based on a track1 paramsGet radio playlists based on a track
trackIdstringtidal_track_by_isrcFind tracks by ISRC code1 paramsFind tracks by ISRC code
isrcstringtidal_similar_tracksFind tracks similar to a given track1 paramsFind tracks similar to a given track
trackIdstringtidal_album_infoGet album details including artists and cover art1 paramsGet album details including artists and cover art
albumIdstringtidal_album_by_barcodeFind albums by barcode/UPC1 paramsFind albums by barcode/UPC
barcodestringtidal_playlist_listList your playlistsList your playlists
No parameter schema in public metadata yet.
tidal_playlist_createCreate a new playlist2 paramsCreate a new playlist
namestringdescriptionstringtidal_playlist_renameRename a playlist2 paramsRename a playlist
namestringplaylistIdstringtidal_playlist_deleteDelete a playlist1 paramsDelete a playlist
playlistIdstringtidal_playlist_add_trackAdd a track to a playlist2 paramsAdd a track to a playlist
trackIdstringplaylistIdstringtidal_playlist_remove_trackRemove a track from a playlist2 paramsRemove a track from a playlist
trackIdstringplaylistIdstringtidal_playlist_add_albumAdd all tracks from an album to a playlist2 paramsAdd all tracks from an album to a playlist
albumIdstringplaylistIdstringtidal_playlist_move_trackMove a track to a different position in a playlist3 paramsMove a track to a different position in a playlist
trackIdstringplaylistIdstringpositionBeforestringtidal_playlist_update_descriptionUpdate playlist description2 paramsUpdate playlist description
playlistIdstringdescriptionstringtidal_library_addAdd an item to your library/favorites2 paramsAdd an item to your library/favorites
resourceIdstringresourceTypestringartist · album · track · videotidal_library_removeRemove an item from your library/favorites2 paramsRemove an item from your library/favorites
resourceIdstringresourceTypestringartist · album · track · videotidal_library_favorited_playlistsList your favorited playlistsList your favorited playlists
No parameter schema in public metadata yet.
tidal_library_add_playlist_favoriteAdd a playlist to favorites1 paramsAdd a playlist to favorites
playlistIdstringtidal_library_remove_playlist_favoriteRemove a playlist from favorites1 paramsRemove a playlist from favorites
playlistIdstringtidal_playback_infoGet playback/streaming info for a track2 paramsGet playback/streaming info for a track
qualitystringLOW · HIGH · LOSSLESS · HI_RESdefault: HIGHtrackIdstringtidal_playback_urlGet stream URL for a track2 paramsGet stream URL for a track
qualitystringLOW · HIGH · LOSSLESS · HI_RESdefault: HIGHtrackIdstringtidal_recommendationsGet personalized music recommendations across daily, discovery, new-release, and offline mixes1 paramsGet personalized music recommendations across daily, discovery, new-release, and offline mixes
categorystringdaily · discovery · new-release · offlinetidal_mix_itemsGet items inside a specific mix returned by tidal_recommendations2 paramsGet items inside a specific mix returned by tidal_recommendations
mixIdstringcategorystringdaily · discovery · new-release · offlinetidal_search_historyList your recent search queriesList your recent search queries
No parameter schema in public metadata yet.
tidal_search_history_deleteDelete a single search history entry1 paramsDelete a single search history entry
entryIdstringtidal_search_history_clearClear all search history entriesClear all search history entries
No parameter schema in public metadata yet.
tidal_saved_listList items saved for later (separate from main library)List items saved for later (separate from main library)
No parameter schema in public metadata yet.
tidal_saved_addSave an item for later without adding it to the main library2 paramsSave an item for later without adding it to the main library
itemIdstringitemTypestringtracks · albums · artists · playlists · videostidal_saved_removeRemove an item from the save-for-later list2 paramsRemove an item from the save-for-later list
itemIdstringitemTypestringtracks · albums · artists · playlists · videostidal_share_createCreate a public share link for a track or album2 paramsCreate a public share link for a track or album
resourceIdstringresourceTypestringtracks · albumstidal_recently_addedGet recently added items from your library1 paramsGet recently added items from your library
typestringtracks · albums · artiststidal_user_profileGet your Tidal user profileGet your Tidal user profile
No parameter schema in public metadata yet.
📢 Active Maintenance Notice: This is an actively maintained community fork of yuhuacheng/tidal-mcp. The original repository appears unmaintained since May 2025. Contributions, issues, and PRs are welcome here!

Most music platforms offer recommendations — Daily Discovery, Top Artists, New Arrivals, etc. — but even with the state-of-the-art system, they often feel too "aggregated". I wanted something more custom and context-aware.
With TIDAL MCP, you can ask for things like:
"Based on my last 10 favorites, find similar tracks — but only ones from recent years."
"Find me tracks like those in this playlist, but slower and more acoustic."
The LLM filters and curates results using your input, finds similar tracks via TIDAL's API, and builds new playlists directly in your account.
This community fork includes significant improvements over the original:
See the full changelog and contribute at: https://github.com/ibeal/tidal-mcp
Clone this repository:
git clone https://github.com/ibeal/tidal-mcp.git
cd tidal-mcp
Build and run with Docker Compose:
docker-compose up -d
Or with Docker directly:
docker build -t tidal-mcp .
docker run -d -p 5050:5050 --name tidal-mcp tidal-mcp
The server will be available at http://localhost:5050.
To customize the port, edit the TIDAL_MCP_PORT environment variable in docker-compose.yml or pass it to docker run:
docker run -d -p 5100:5100 -e TIDAL_MCP_PORT=5100 --name tidal-mcp tidal-mcp
Clone this repository:
git clone https://github.com/ibeal/tidal-mcp.git
cd tidal-mcp
Create a virtual environment and install dependencies using uv:
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
Install the package with all dependencies from the pyproject.toml file:
uv pip install --editable .
This will install all dependencies defined in the pyproject.toml file and set up the project in development mode.
To add this MCP server to Claude Desktop, you need to update the MCP configuration file.
{
"mcpServers": {
"TIDAL Integration": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--network",
"host",
"-v",
"/tmp:/tmp",
"tidal-mcp"
],
"env": {
"TIDAL_MCP_PORT": "5050"
}
}
}
}
Setup:
Build the Docker image:
docker build -t tidal-mcp .
Authenticate with TIDAL (run this once):
docker-compose -f docker-compose.auth.yml run --rm tidal-auth
You'll see the OAuth URL in the output:
============================================================
TIDAL LOGIN REQUIRED
Please open this URL in your browser:
https://link.tidal.com/XXXXX
Expires in 300 seconds
============================================================
Open the URL in your browser, log in to TIDAL, and the session will be saved to /tmp/tidal-session-oauth.json.
Update your Claude Desktop config (see above) and restart Claude Desktop.
Configuration details:
--network host - Allows the container to use the host's network directly-v /tmp:/tmp - Mounts the host's /tmp directory so the TIDAL session persists across container restartsTo use a custom port:
{
"mcpServers": {
"TIDAL Integration": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--network",
"host",
"-v",
"/tmp:/tmp",
"-e",
"TIDAL_MCP_PORT=5100",
"tidal-mcp"
]
}
}
}
{
"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:

For Cursor users, add this configuration to your MCP settings file (~/.cursor/mcp.json):
{
"mcpServers": {
"TIDAL Integration": {
"command": "/path/to/your/project/tidal-mcp/.venv/bin/python",
"env": {
"TIDAL_MCP_PORT": "5100"
},
"args": ["/path/to/your/project/tidal-mcp/start_mcp.py"]
}
}
}
Important: Replace /path/to/your/project/tidal-mcp with the actual path to your project directory.
~/.cursor/mcp.jsonOnce configured, you can interact with your TIDAL account through a LLM by asking questions like:
💡 You can also ask the model to:
The TIDAL MCP integration provides the following tools:
tidal_login: Authenticate with TIDAL through browser login flowget_favorite_tracks: Retrieve your favorite tracks from TIDALrecommend_tracks: Get personalized music recommendationscreate_tidal_playlist: Create a new playlist in your TIDAL accountget_user_playlists: List all your playlists on TIDALget_playlist_tracks: Retrieve all tracks from a specific playlist (with automatic pagination)delete_tidal_playlist: Delete a playlist from your TIDAL accountadd_tracks_to_playlist: Add tracks to an existing playlistremove_tracks_from_playlist: Remove tracks by ID or position indexupdate_playlist_metadata: Update playlist title and/or descriptionreorder_playlist_tracks: Move tracks to different positions within a playlistsearch_tidal: Comprehensive search across all TIDAL content typessearch_tracks: Search specifically for tracks/songssearch_albums: Search specifically for albumssearch_artists: Search specifically for artistssearch_playlists: Search specifically for playlistsThis is an actively maintained community fork. Contributions are welcome!
git checkout -b feature/amazing-feature)git commit -m 'Add amazing feature')git push origin feature/amazing-feature)Original Project:
Contributors:
Libraries & Frameworks:
TIDAL_MCP_PORTPort for the TIDAL API Flask server (default: 5050)
com.mcparmory/google-search
io.github.pipeworx-io/brave-search
marcopesani/mcp-server-serper
brave/brave-search-mcp-server
com.mcparmory/google-search-console
acamolese/google-search-console-mcp