Tidal Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Tidal Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
📢 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!
Demo: Music Recommendations in Action
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
#### Option 1: Docker (Recommended)
git clone https://github.com/ibeal/tidal-mcp.git
cd tidal-mcp docker-compose up -dOr with Docker directly:
docker build -t tidal-mcp .
docker run -d -p 5050:5050 --name tidal-mcp tidal-mcpThe server will be available at http://localhost:5050.
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#### Option 2: Local Python Installation
git clone https://github.com/ibeal/tidal-mcp.git
cd tidal-mcp uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate 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.
#### Option 1: Docker Configuration (if using Docker)
{
"mcpServers": {
"TIDAL Integration": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--network",
"host",
"-v",
"/tmp:/tmp",
"tidal-mcp"
],
"env": {
"TIDAL_MCP_PORT": "5050"
}
}
}
}Setup:
docker build -t tidal-mcp . docker-compose -f docker-compose.auth.yml run --rm tidal-authYou'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.
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"
]
}
}
}#### Option 2: Local Python Configuration (if not using Docker)
{
"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: Claude MCP Configuration
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.
#### Steps to Install MCP Configuration in Cursor
~/.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:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.