artist_setlists
Pack: setlist-fm · Endpoint: https://gateway.pipeworx.io/setlist-fm/mcp
Fetch paginated setlists for a specific artist identified by MusicBrainz ID (mbid). Returns setlists with date, venue, city, and track lists.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
mbid | string | yes | |
p | number | no |
Example call
Arguments
{
"mbid": "79239b12-edad-4280-a524-8344d868a69e"
}
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":{"mbid":"79239b12-edad-4280-a524-8344d868a69e"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('artist_setlists', {
"mbid": "79239b12-edad-4280-a524-8344d868a69e"
});
More examples
{
"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.