track

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

Track metadata by Deezer track 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":"track","arguments":{}}}'

Response shape

FieldTypeDescription
idnumberTrack ID
titlestringTrack title
durationnumberDuration in seconds
previewstring30-second preview URL
artistobject
albumobject
release_datestringRelease date ISO format
Full JSON Schema
{
  "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": "30-second preview URL"
    },
    "artist": {
      "type": "object",
      "properties": {
        "id": {
          "type": "number",
          "description": "Artist ID"
        },
        "name": {
          "type": "string",
          "description": "Artist name"
        },
        "picture": {
          "type": "string",
          "description": "Artist image URL"
        }
      }
    },
    "album": {
      "type": "object",
      "properties": {
        "id": {
          "type": "number",
          "description": "Album ID"
        },
        "title": {
          "type": "string",
          "description": "Album title"
        },
        "cover": {
          "type": "string",
          "description": "Album cover URL"
        }
      }
    },
    "release_date": {
      "type": "string",
      "description": "Release date ISO format"
    }
  }
}

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