recommendations

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

Get ranked SeatGeek event recommendations SIMILAR TO a seed you supply — a performer id, an event id, or the performers of an event. Requires at least one seed; it is not a personalized feed for an anonymous user. Optional filters (geoip, lat/lon, postal_code, datetime_utc, per_page) narrow the result.

Parameters

NameTypeRequiredDescription
postal_codestringnoRestrict recommendations to a US postal code, e.g. “94002”.
latnumbernoLatitude to rank recommendations around; pair with lon.
lonnumbernoLongitude to rank recommendations around; pair with lat.
per_pagenumbernoResults per page (default 10).

Example call

Arguments

{
  "performers.id": 35,
  "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":"recommendations","arguments":{"performers.id":35,"per_page":10}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('recommendations', {
  "performers.id": 35,
  "per_page": 10
});

Response shape

Always returns: items, count

FieldTypeDescription
itemsarrayRecommended events
countintegerNumber of items returned.
Full JSON Schema
{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "Recommended events",
      "items": {
        "type": "object",
        "properties": {},
        "additionalProperties": true
      }
    },
    "count": {
      "type": "integer",
      "description": "Number of items returned."
    }
  },
  "required": [
    "items",
    "count"
  ]
}

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 August 22, 2026