search
Pack: deezer · Endpoint: https://gateway.pipeworx.io/deezer/mcp
Search Deezer for tracks/albums/artists/playlists.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
type | string | no | track | album | artist | playlist (default track) |
query | string | yes | e.g. “Daft Punk Get Lucky” |
limit | number | no | 1-100 (default 25) |
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":"search","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
data | array | Array of search results (tracks, albums, artists, or playlists) |
total | number | Total number of results |
next | string | URL to next page of results |
Full JSON Schema
{
"type": "object",
"properties": {
"data": {
"type": "array",
"description": "Array of search results (tracks, albums, artists, or playlists)",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Resource ID"
},
"title": {
"type": "string",
"description": "Resource title or name"
},
"name": {
"type": "string",
"description": "Resource name (for artists/playlists)"
},
"artist": {
"type": "object",
"description": "Artist info for tracks"
},
"album": {
"type": "object",
"description": "Album info for tracks"
},
"duration": {
"type": "number",
"description": "Duration in seconds (for tracks)"
},
"preview": {
"type": "string",
"description": "Preview URL"
},
"picture": {
"type": "string",
"description": "Image URL"
}
}
}
},
"total": {
"type": "number",
"description": "Total number of results"
},
"next": {
"type": "string",
"description": "URL to next page of results"
}
}
}
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.