recommendations

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

Get personalized SeatGeek event recommendations; accepts optional filters (location, datetime, genres) and returns ranked events the user is likely to enjoy.

Example call

Arguments

{
  "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":{"per_page":10}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('recommendations', {
  "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 July 8, 2026