event_search
Pack: ticketmaster · Endpoint: https://gateway.pipeworx.io/ticketmaster/mcp
Ticketmaster Discovery API — search live events by keyword, city, countryCode, stateCode, venueId, attractionId, classificationName (e.g. ‘Music’), dates, and more. Returns events with dates, venue, and ticket links.
Example call
Arguments
{
"keyword": "taylor swift"
}
curl
curl -X POST https://gateway.pipeworx.io/ticketmaster/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"event_search","arguments":{"keyword":"taylor swift"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('event_search', {
"keyword": "taylor swift"
});
More examples
{
"keyword": "concert",
"city": "new york",
"startDateTime": "2024-01-01T00:00:00Z"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Raw JSON response from Ticketmaster event search API",
"additionalProperties": true
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ticketmaster": {
"url": "https://gateway.pipeworx.io/ticketmaster/mcp"
}
}
}
See Getting Started for client-specific install steps.