album

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

Album metadata + tracklist by Deezer album 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":"album","arguments":{}}}'

Response shape

FieldTypeDescription
idnumberAlbum ID
titlestringAlbum title
coverstringAlbum cover image URL
artistobject
release_datestringRelease date ISO format
durationnumberTotal duration in seconds
tracksobject
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.

Regenerated from source · build May 21, 2026