taxonomies

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

List all SeatGeek event taxonomies (sports, concerts, theater, etc.) with their IDs and parent/child hierarchy; useful for filtering events by category.

Example call

Arguments

{}

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":"taxonomies","arguments":{}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('taxonomies', {});

Response shape

FieldTypeDescription
metaobject
taxonomiesarray
Full JSON Schema
{
  "type": "object",
  "properties": {
    "meta": {
      "type": "object",
      "properties": {
        "total": {
          "type": "number"
        },
        "took": {
          "type": "number"
        },
        "page": {
          "type": "number"
        },
        "per_page": {
          "type": "number"
        },
        "geolocation": {
          "type": "null"
        }
      }
    },
    "taxonomies": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "parent_id": {
            "type": [
              "null",
              "number"
            ]
          },
          "short_name": {
            "type": "string"
          },
          "slug": {
            "type": "string"
          },
          "images": {
            "type": "object",
            "properties": {
              "huge": {
                "type": "string"
              }
            }
          },
          "image": {
            "type": [
              "string",
              "null"
            ]
          },
          "stats": {
            "type": "object",
            "properties": {
              "event_count": {
                "type": "number"
              },
              "performer_count": {
                "type": "number"
              },
              "next_event_datetime_utc": {
                "type": [
                  "string",
                  "null"
                ]
              }
            }
          },
          "seo_event_type": {
            "type": "string"
          },
          "rank": {
            "type": "number"
          },
          "is_visible": {
            "type": "boolean"
          }
        }
      }
    }
  }
}

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