performer

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

Fetch full SeatGeek performer profile by numeric id, including bio, images, taxonomies, stats, and related performers.

Parameters

NameTypeRequiredDescription
idnumberyes

Example call

Arguments

{
  "id": 5624
}

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

TypeScript (@pipeworx/sdk)

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

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

Response shape

FieldTypeDescription
Full JSON Schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": true,
  "description": "Single performer 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