artist_top

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

Top tracks for an artist.

Parameters

NameTypeRequiredDescription
idnumberyes
limitnumberno1-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":"artist_top","arguments":{}}}'

Response shape

FieldTypeDescription
dataarrayArray of top tracks by the artist
Full JSON Schema
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of top tracks by the artist",
      "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"
          },
          "artist": {
            "type": "object",
            "description": "Artist info"
          },
          "album": {
            "type": "object",
            "description": "Album info"
          }
        }
      }
    }
  }
}

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