MCP server for TIDAL - search tracks, manage playlists, and get personalized recommendations
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"TIDAL Integration": {
"env": {
"TIDAL_MCP_PORT": "5050"
},
"args": [
"run",
"--rm",
"-i",
"--network",
"host",
"-v",
"/tmp:/tmp",
"tidal-mcp"
],
"command": "docker"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
📢 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!
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in entertainment
The official MCP Server for the Mux API
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to control Unreal E…
A Model Context Protocol (MCP) server that gives Claude direct control over Strudel.cc for AI-assisted music generation and live coding.
MCP server for *arr media suite - Sonarr, Radarr, Lidarr, Readarr, Prowlarr
MCP Security Weekly
Get CVE alerts and security updates for Tidal MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
📢 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 dependen