venues
Pack: seatgeek · Endpoint: https://gateway.pipeworx.io/seatgeek/mcp
Search SeatGeek venues by name, city, state, country, or postal code; returns venue details including address, capacity, and geolocation.
Example call
Arguments
{
"city": "Los Angeles",
"per_page": 15
}
curl
curl -X POST https://gateway.pipeworx.io/seatgeek/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"venues","arguments":{"city":"Los Angeles","per_page":15}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('venues', {
"city": "Los Angeles",
"per_page": 15
});
Response shape
| Field | Type | Description |
|---|---|---|
meta | object | |
venues | array |
Full JSON Schema
{
"type": "object",
"properties": {
"meta": {
"type": "object",
"properties": {
"total": {
"type": "number"
},
"took": {
"type": "number"
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"geolocation": {
"type": "null"
}
}
},
"venues": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"name": {
"type": "string"
},
"name_v2": {
"type": [
"string",
"null"
]
},
"postal_code": {
"type": [
"string",
"null"
]
},
"timezone": {
"type": [
"string",
"null"
]
},
"score": {
"type": "number"
},
"popularity": {
"type": "number"
},
"address": {
"type": [
"string",
"null"
]
},
"country": {
"type": [
"string",
"null"
]
},
"city": {
"type": [
"string",
"null"
]
},
"state": {
"type": [
"string",
"null"
]
},
"slug": {
"type": [
"string",
"null"
]
},
"metro_code": {
"type": "number"
},
"capacity": {
"type": "number"
},
"links": {
"type": "array",
"items": {}
},
"passes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"pass_type": {
"type": "string"
},
"name": {
"type": "string"
},
"url": {
"type": "string"
},
"relative_url": {
"type": "string"
},
"stats": {
"type": "object",
"properties": {
"event_count": {
"type": "number"
}
}
},
"image_rights_message": {
"type": "string"
}
}
}
},
"extended_address": {
"type": [
"string",
"null"
]
},
"display_location": {
"type": [
"string",
"null"
]
},
"access_method": {
"type": "null"
},
"location": {
"type": "object",
"properties": {
"lat": {
"type": "number"
},
"lon": {
"type": "number"
}
}
},
"has_upcoming_events": {
"type": "boolean"
},
"num_upcoming_events": {
"type": "number"
},
"stats": {
"type": "object",
"properties": {
"event_count": {
"type": "number"
}
}
},
"url": {
"type": [
"string",
"null"
]
},
"relative_url": {
"type": [
"string",
"null"
]
},
"marquee_city": {
"type": [
"string",
"null"
]
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"seatgeek": {
"url": "https://gateway.pipeworx.io/seatgeek/mcp"
}
}
}
See Getting Started for client-specific install steps.