venue

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

Fetch full SeatGeek venue record by numeric id, including address, city, state, country, geolocation, capacity, and timezone.

Parameters

NameTypeRequiredDescription
idnumberyes

Example call

Arguments

{
  "id": 9
}

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":"venue","arguments":{"id":9}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('venue', {
  "id": 9
});

Response shape

FieldTypeDescription
Full JSON Schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": true,
  "description": "Single venue object"
}

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