mcp-deezer
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., "@mcp-deezersearch for songs by Daft Punk"
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.
mcp-deezer
Deezer MCP server for AI agents. 29 tools to search, manage playlists, favorites, and discover music. Works with a free Deezer account. No developer app needed.
Why this exists
Deezer closed their developer portal in 2025. No new OAuth apps. No API keys. This server uses your browser session cookie (ARL) instead. Free account, no registration, it just works.
Related MCP server: spotify-mcp
For AI Agents — Installation Guide
If you are an AI agent reading this to install mcp-deezer for a user, follow these steps in order:
Step 1: Check prerequisites
Python 3.12+ must be installed (
python3 --versionorpython --version)If not installed, tell the user to install it from https://www.python.org/downloads/
Step 2: Install the package
pip install mcp-deezerOr with uvx (no persistent install):
uvx mcp-deezerStep 3: Get the user's Deezer ARL cookie
The user must do this manually in their browser:
Go to https://deezer.com and log in
Press F12 → Application → Cookies →
deezer.comFind the cookie named
arland copy its value (~192 character hex string)
The ARL looks like: a1b2c3d4e5f6... (192 hex chars)
Step 4: Configure the MCP server
Add this to the user's MCP client config. The DEEZER_ARL environment variable is required.
Claude Desktop — claude_desktop_config.json:
{
"mcpServers": {
"deezer": {
"command": "uvx",
"args": ["mcp-deezer"],
"env": {
"DEEZER_ARL": "PASTE_ARL_HERE"
}
}
}
}Claude Code — terminal:
claude mcp add deezer -e DEEZER_ARL=PASTE_ARL_HERE -- uvx mcp-deezerCursor — .cursor/mcp.json:
{
"mcpServers": {
"deezer": {
"command": "uvx",
"args": ["mcp-deezer"],
"env": {
"DEEZER_ARL": "PASTE_ARL_HERE"
}
}
}
}Hermes Agent — ~/.hermes/config.yaml:
mcp_servers:
deezer:
command: uvx
args: [mcp-deezer]
env:
DEEZER_ARL: "PASTE_ARL_HERE"VS Code / Copilot — .vscode/mcp.json:
{
"servers": {
"deezer": {
"command": "uvx",
"args": ["mcp-deezer"],
"env": {
"DEEZER_ARL": "PASTE_ARL_HERE"
}
}
}
}Step 5: Restart the MCP client
Tell the user to restart their AI client (Claude Desktop, Cursor, etc.) for the server to load.
Step 6: Verify
Call get_me — it should return the user's Deezer profile ID. If it returns an error about DEEZER_ARL, the cookie is missing or expired.
Available Tools (29)
Tool | Description | Auth |
| User profile | ✅ |
| Search tracks, albums, artists, playlists | ✅ |
| Track details with lyrics | ✅ |
| Artist details with bio | ✅ |
| Album details with tracklist | ✅ |
| Playlist details with tracks | ✅ |
| Country charts (FR, US, DE...) | ✅ |
| Similar tracks | ✅ |
| Similar artists | ✅ |
| Personal Deezer Flow | ✅ |
| Personalized recommendations | ✅ |
| Listening history | ✅ |
| Personal top tracks/artists | ✅ |
| Liked tracks | ✅ |
| Liked albums | ✅ |
| Followed artists | ✅ |
| Liked playlists | ✅ |
| Like a track | ✅ |
| Unlike a track | ✅ |
| Like an album | ✅ |
| Unlike an album | ✅ |
| Follow an artist | ✅ |
| Unfollow an artist | ✅ |
| List user playlists | ✅ |
| Create a playlist | ✅ |
| Update playlist title/desc | ✅ |
| Delete a playlist | ✅ |
| Add tracks to playlist | ✅ |
| Remove tracks from playlist | ✅ |
How It Works
AI Agent ←── MCP (stdio) ──→ mcp-deezer ←── GraphQL ──→ Deezer API
│
ARL cookie (your session)Uses deezer-python-gql — an unofficial client for Deezer's internal GraphQL API. Auth is via the ARL cookie stored in your browser.
FAQ (for agents)
Q: The user's ARL stopped working.
A: Tell them to log out and back in to deezer.com, then grab the new arl cookie.
Q: Does this work with a free Deezer account? A: Yes. Unlike Spotify's API, Deezer works with free accounts.
Q: Is this against Deezer's ToS? A: It uses the same API as Deezer's web player. Your account, your data, your session cookie.
Q: Python 3.12+ is not available.
A: Install it from https://www.python.org/downloads/ or use uvx which manages its own Python.
License
MIT
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
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/Benitoow/mcp-deezer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server