artist
Pack: deezer · Endpoint: https://gateway.pipeworx.io/deezer/mcp
Artist metadata by Deezer artist 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":"artist","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
id | number | Artist ID |
name | string | Artist name |
picture | string | Artist image URL |
nb_album | number | Number of albums |
nb_fan | number | Number of fans |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Artist ID"
},
"name": {
"type": "string",
"description": "Artist name"
},
"picture": {
"type": "string",
"description": "Artist image URL"
},
"nb_album": {
"type": "number",
"description": "Number of albums"
},
"nb_fan": {
"type": "number",
"description": "Number of fans"
}
}
}
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.