venue_search
Pack: setlist-fm · Endpoint: https://gateway.pipeworx.io/setlist-fm/mcp
Search setlist.fm for venues by name, city, country, or state. Returns a paginated list of matching venues with name, city, and country.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | no | |
cityId | string | no | |
cityName | string | no | |
country | string | no | |
state | string | no | |
stateCode | string | no | |
p | number | no |
Example call
Arguments
{
"name": "Madison Square Garden",
"cityName": "New York",
"country": "United States"
}
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_search","arguments":{"name":"Madison Square Garden","cityName":"New York","country":"United States"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('venue_search', {
"name": "Madison Square Garden",
"cityName": "New York",
"country": "United States"
});
More examples
{
"cityName": "London",
"country": "United Kingdom",
"p": 1
}
Response shape
| Field | Type | Description |
|---|---|---|
itemsPerPage | number | Items per page |
page | number | Current page |
total | number | Total venues |
venue | array | Search result venues |
Full JSON Schema
{
"type": "object",
"properties": {
"itemsPerPage": {
"type": "number",
"description": "Items per page"
},
"page": {
"type": "number",
"description": "Current page"
},
"total": {
"type": "number",
"description": "Total venues"
},
"venue": {
"type": "array",
"description": "Search result venues",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Venue ID"
},
"name": {
"type": "string",
"description": "Venue name"
},
"url": {
"type": "string",
"description": "URL"
},
"city": {
"type": "object",
"description": "City"
},
"coords": {
"type": "object",
"description": "Coordinates"
}
}
}
}
}
}
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.