Connects to Bandsintown's live music event data through Pipeworx's gateway. You get two tools: artist_events to pull upcoming shows for a specific artist, and events for broader event filtering. Since it runs over streamable-http, you can drop the URL into your MCP config without managing local processes. Part of the larger Pipeworx ecosystem that bundles 673+ data sources behind a single gateway, so you can either use this standalone or tap into the full catalog. If you're building anything that needs concert dates, tour schedules, or live music discovery, this is a straightforward way to wire that data into Claude or other MCP clients.
Bandsintown MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
artist_events | Upcoming events for an artist. |
events | Global events filter. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"bandsintown": {
"url": "https://gateway.pipeworx.io/bandsintown/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Bandsintown data" })
The gateway picks the right tool and fills the arguments automatically.
MIT