events

Pack: seatgeek · Endpoint: https://gateway.pipeworx.io/seatgeek/mcp

Search SeatGeek events by keyword, venue, performer, location, date range, or category; returns event listings with name, datetime, venue, performers, and ticket URLs.

Example call

Arguments

{
  "q": "Taylor Swift",
  "city": "New York",
  "per_page": 10
}

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":"events","arguments":{"q":"Taylor Swift","city":"New York","per_page":10}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('events', {
  "q": "Taylor Swift",
  "city": "New York",
  "per_page": 10
});

More examples

{
  "geoip": true
}

Response shape

FieldTypeDescription
eventsarrayList of events
Full JSON Schema
{
  "type": "object",
  "properties": {
    "events": {
      "type": "array",
      "description": "List of events",
      "items": {
        "type": "object",
        "properties": {},
        "additionalProperties": true
      }
    }
  },
  "additionalProperties": true
}

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.

Regenerated from source · build July 8, 2026