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
| Name | Type | Required | Description |
|---|---|---|---|
postal_code | string | no | Restrict recommendations to a US postal code, e.g. “94002”. |
lat | number | no | Latitude to rank recommendations around; pair with lon. |
lon | number | no | Longitude to rank recommendations around; pair with lat. |
per_page | number | no | Results 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
| Field | Type | Description |
|---|---|---|
items | array | Recommended events |
count | integer | Number 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.