setlist
Pack: setlist-fm · Endpoint: https://gateway.pipeworx.io/setlist-fm/mcp
Fetch a single setlist by its setlist.fm setlist_id. Returns artist, event date, venue, city, and the full ordered track list with song names.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
setlist_id | string | yes |
Example call
Arguments
{
"setlist_id": "13d5ff04-a8f4-4ed4-be08-67e0b5df8804"
}
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":"setlist","arguments":{"setlist_id":"13d5ff04-a8f4-4ed4-be08-67e0b5df8804"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('setlist', {
"setlist_id": "13d5ff04-a8f4-4ed4-be08-67e0b5df8804"
});
Response shape
| Field | Type | Description |
|---|---|---|
id | string | Setlist ID |
eventDate | string | Event date |
url | string | Setlist URL |
artist | object | Artist info |
venue | object | Venue info |
tour | object | Tour info |
sets | array | Performance sets |
Full JSON Schema
{
"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"
},
"sets": {
"type": "array",
"description": "Performance sets",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Set name"
},
"encore": {
"type": "number",
"description": "Encore number"
},
"song": {
"type": "array",
"description": "Songs in set",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Song name"
},
"info": {
"type": "string",
"description": "Song info"
},
"cover": {
"type": "object",
"description": "Cover 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.