venue_setlists
Pack: setlist-fm · Endpoint: https://gateway.pipeworx.io/setlist-fm/mcp
Fetch paginated setlists performed at a specific venue by venue id. Returns setlists with date, artist, and track lists.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | |
p | number | no |
Example call
Arguments
{
"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":"venue_setlists","arguments":{"id":"13d5ff04-a8f4-4ed4-be08-67e0b5df8804"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('venue_setlists', {
"id": "13d5ff04-a8f4-4ed4-be08-67e0b5df8804"
});
More examples
{
"id": "13d5ff04-a8f4-4ed4-be08-67e0b5df8804",
"p": 3
}
Response shape
| Field | Type | Description |
|---|---|---|
itemsPerPage | number | Items per page |
page | number | Current page |
total | number | Total setlists |
setlist | array | Setlists at venue |
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 at venue",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Setlist ID"
},
"eventDate": {
"type": "string",
"description": "Event date"
},
"url": {
"type": "string",
"description": "URL"
},
"artist": {
"type": "object",
"description": "Artist"
},
"venue": {
"type": "object",
"description": "Venue"
}
}
}
}
}
}
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.