artist_events
Pack: bandsintown · Endpoint: https://gateway.pipeworx.io/bandsintown/mcp
Upcoming events for an artist.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | |
date | string | no |
Example call
Arguments
{
"name": "Coldplay"
}
curl
curl -X POST https://gateway.pipeworx.io/bandsintown/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"artist_events","arguments":{"name":"Coldplay"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('artist_events', {
"name": "Coldplay"
});
More examples
{
"name": "Taylor Swift",
"date": "2024-06-15"
}
Response shape
Always returns: items, count
| Field | Type | Description |
|---|---|---|
items | array | List of upcoming events for the artist |
count | integer | Number of items returned. |
Full JSON Schema
{
"type": "object",
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Event ID"
},
"artist_id": {
"type": "integer",
"description": "Artist ID"
},
"url": {
"type": "string",
"description": "Event URL on Bandsintown"
},
"datetime": {
"type": "string",
"description": "Event date and time in ISO format"
},
"title": {
"type": "string",
"description": "Event title"
},
"description": {
"type": [
"string",
"null"
],
"description": "Event description if available"
},
"lineup": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of performing artists"
},
"offers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "Offer type (e.g., ticket)"
},
"url": {
"type": "string",
"description": "Offer URL"
},
"status": {
"type": "string",
"description": "Offer status"
}
}
},
"description": "Ticket offers"
},
"venue": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Venue name"
},
"url": {
"type": "string",
"description": "Venue URL"
},
"city": {
"type": "string",
"description": "Venue city"
},
"region": {
"type": "string",
"description": "Venue region/state"
},
"country": {
"type": "string",
"description": "Venue country"
},
"latitude": {
"type": "number",
"description": "Venue latitude"
},
"longitude": {
"type": "number",
"description": "Venue longitude"
}
},
"description": "Venue information"
}
}
},
"description": "List of upcoming events for the artist"
},
"count": {
"type": "integer",
"description": "Number of items returned."
}
},
"required": [
"items",
"count"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"bandsintown": {
"url": "https://gateway.pipeworx.io/bandsintown/mcp"
}
}
}
See Getting Started for client-specific install steps.