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’), and date window. PREFER for “what is on at ”, “upcoming concerts”, “events in this month”. Pass the venue/artist as keyword, or venueId from venue_search for an exact venue. 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"
}
{
  "keyword": "Taylor Swift",
  "size": 2,
  "sort": "date,asc"
}

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.

Regenerated from source · build August 22, 2026