search

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

Search Deezer for tracks/albums/artists/playlists.

Parameters

NameTypeRequiredDescription
typestringnotrack | album | artist | playlist (default track)
querystringyese.g. “Daft Punk Get Lucky”
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":"search","arguments":{}}}'

Response shape

FieldTypeDescription
dataarrayArray of search results (tracks, albums, artists, or playlists)
totalnumberTotal number of results
nextstringURL to next page of results
Full JSON Schema
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of search results (tracks, albums, artists, or playlists)",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "description": "Resource ID"
          },
          "title": {
            "type": "string",
            "description": "Resource title or name"
          },
          "name": {
            "type": "string",
            "description": "Resource name (for artists/playlists)"
          },
          "artist": {
            "type": "object",
            "description": "Artist info for tracks"
          },
          "album": {
            "type": "object",
            "description": "Album info for tracks"
          },
          "duration": {
            "type": "number",
            "description": "Duration in seconds (for tracks)"
          },
          "preview": {
            "type": "string",
            "description": "Preview URL"
          },
          "picture": {
            "type": "string",
            "description": "Image URL"
          }
        }
      }
    },
    "total": {
      "type": "number",
      "description": "Total number of results"
    },
    "next": {
      "type": "string",
      "description": "URL to next page of results"
    }
  }
}

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