performers

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

Search SeatGeek performers (artists, teams, comedians) by name or genre; returns performer profiles with images, genres, and upcoming event counts.

Example call

Arguments

{
  "q": "The Beatles",
  "per_page": 20
}

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":"performers","arguments":{"q":"The Beatles","per_page":20}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('performers', {
  "q": "The Beatles",
  "per_page": 20
});

Response shape

FieldTypeDescription
performersarray
metaobject
Full JSON Schema
{
  "type": "object",
  "properties": {
    "performers": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "image": {
            "type": "string"
          },
          "id": {
            "type": "number"
          },
          "images": {
            "type": "object",
            "properties": {
              "huge": {
                "type": "string"
              }
            }
          },
          "divisions": {
            "type": "null"
          },
          "links": {
            "type": "array",
            "items": {}
          },
          "has_upcoming_events": {
            "type": "boolean"
          },
          "primary": {
            "type": "boolean"
          },
          "stats": {
            "type": "object",
            "properties": {
              "event_count": {
                "type": "number"
              }
            }
          },
          "taxonomies": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "number"
                },
                "name": {
                  "type": "string"
                },
                "parent_id": {
                  "type": [
                    "null",
                    "number"
                  ]
                },
                "seo_event_type": {
                  "type": "string"
                },
                "rank": {
                  "type": "number"
                }
              }
            }
          },
          "image_attribution": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "score": {
            "type": "number"
          },
          "slug": {
            "type": "string"
          },
          "home_venue_id": {
            "type": "null"
          },
          "short_name": {
            "type": "string"
          },
          "num_upcoming_events": {
            "type": "number"
          },
          "colors": {
            "type": "null"
          },
          "image_license": {
            "type": "string"
          },
          "popularity": {
            "type": "number"
          },
          "location": {
            "type": "null"
          },
          "relative_url": {
            "type": "string"
          },
          "image_rights_message": {
            "type": "string"
          },
          "is_event": {
            "type": "boolean"
          },
          "ada_dominant_image_color": {
            "type": "string"
          },
          "domain_information": {
            "type": "array",
            "items": {}
          }
        }
      }
    },
    "meta": {
      "type": "object",
      "properties": {
        "geolocation": {
          "type": "null"
        },
        "total": {
          "type": "number"
        },
        "took": {
          "type": "number"
        },
        "page": {
          "type": "number"
        },
        "per_page": {
          "type": "number"
        }
      }
    }
  }
}

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