album
Pack: deezer · Endpoint: https://gateway.pipeworx.io/deezer/mcp
Album metadata + tracklist by Deezer album id.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | number | yes |
Example call
curl -X POST https://gateway.pipeworx.io/deezer/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"album","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
id | number | Album ID |
title | string | Album title |
cover | string | Album cover image URL |
artist | object | |
release_date | string | Release date ISO format |
duration | number | Total duration in seconds |
tracks | object |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Album ID"
},
"title": {
"type": "string",
"description": "Album title"
},
"cover": {
"type": "string",
"description": "Album cover image URL"
},
"artist": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Artist ID"
},
"name": {
"type": "string",
"description": "Artist name"
}
}
},
"release_date": {
"type": "string",
"description": "Release date ISO format"
},
"duration": {
"type": "number",
"description": "Total duration in seconds"
},
"tracks": {
"type": "object",
"properties": {
"data": {
"type": "array",
"description": "Array of tracks on the album",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Track ID"
},
"title": {
"type": "string",
"description": "Track title"
},
"duration": {
"type": "number",
"description": "Duration in seconds"
},
"preview": {
"type": "string",
"description": "Preview URL"
}
}
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"deezer": {
"url": "https://gateway.pipeworx.io/deezer/mcp"
}
}
}
See Getting Started for client-specific install steps.