artist

Pack: deezer · Endpoint: https://gateway.pipeworx.io/deezer/mcp

Artist metadata by Deezer artist id.

Parameters

NameTypeRequiredDescription
idnumberyes

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

FieldTypeDescription
idnumberArtist ID
namestringArtist name
picturestringArtist image URL
nb_albumnumberNumber of albums
nb_fannumberNumber 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.

Regenerated from source · build May 21, 2026