user_attended
Pack: setlist-fm · Endpoint: https://gateway.pipeworx.io/setlist-fm/mcp
Fetch paginated list of concerts a setlist.fm user has marked as attended, by user_id. Returns setlists with date, artist, venue, and track list.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
user_id | string | yes | |
p | number | no |
Example call
Arguments
{
"user_id": "john_doe_123"
}
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":"user_attended","arguments":{"user_id":"john_doe_123"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('user_attended', {
"user_id": "john_doe_123"
});
More examples
{
"user_id": "john_doe_123",
"p": 2
}
Response shape
| Field | Type | Description |
|---|---|---|
itemsPerPage | number | Items per page |
page | number | Current page |
total | number | Total attended shows |
setlist | array | Attended setlists |
Full JSON Schema
{
"type": "object",
"properties": {
"itemsPerPage": {
"type": "number",
"description": "Items per page"
},
"page": {
"type": "number",
"description": "Current page"
},
"total": {
"type": "number",
"description": "Total attended shows"
},
"setlist": {
"type": "array",
"description": "Attended setlists",
"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.