artist_setlists
Pack: setlist-fm · Endpoint: https://gateway.pipeworx.io/setlist-fm/mcp
A band’s concert history, newest first — use this for “what did Radiohead play at their most recent show”. Pass artist_name and the band is resolved to its MusicBrainz ID for you, preferring an exact name match so a tribute act does not answer for the band; pass mbid directly when you have one. Returns setlists with date, venue, city, and full track lists.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
artist_name | string | no | Band or performer name, e.g. “Radiohead”. Either this or mbid is required. |
mbid | string | no | MusicBrainz ID. Either this or artist_name is required. |
p | number | no | Page number, 1-based. Page 1 is the most recent concerts. |
Example call
Arguments
{
"artist_name": "Radiohead"
}
curl
curl -X POST https://gateway.pipeworx.io/setlist-fm/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"artist_setlists","arguments":{"artist_name":"Radiohead"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('artist_setlists', {
"artist_name": "Radiohead"
});
More examples
{
"mbid": "79239b12-edad-4280-a524-8344d868a69e"
}
{
"mbid": "79239b12-edad-4280-a524-8344d868a69e",
"p": 2
}
Response shape
| Field | Type | Description |
|---|---|---|
itemsPerPage | number | Items per page |
page | number | Current page |
total | number | Total setlists |
setlist | array | Setlists by artist |
Full JSON Schema
{
"type": "object",
"properties": {
"itemsPerPage": {
"type": "number",
"description": "Items per page"
},
"page": {
"type": "number",
"description": "Current page"
},
"total": {
"type": "number",
"description": "Total setlists"
},
"setlist": {
"type": "array",
"description": "Setlists by artist",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Setlist ID"
},
"eventDate": {
"type": "string",
"description": "Event date"
},
"url": {
"type": "string",
"description": "Setlist URL"
},
"artist": {
"type": "object",
"description": "Artist info"
},
"venue": {
"type": "object",
"description": "Venue info"
},
"tour": {
"type": "object",
"description": "Tour info"
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"setlist-fm": {
"url": "https://gateway.pipeworx.io/setlist-fm/mcp"
}
}
}
See Getting Started for client-specific install steps.