venue_search

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

Ticketmaster Discovery API — search venues by keyword, city, stateCode, countryCode, or postalCode. Returns venue name, address, city, state, capacity, and location coordinates.

Example call

Arguments

{
  "keyword": "madison square garden"
}

curl

curl -X POST https://gateway.pipeworx.io/ticketmaster/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"venue_search","arguments":{"keyword":"madison square garden"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('venue_search', {
  "keyword": "madison square garden"
});

More examples

{
  "keyword": "arena",
  "city": "los angeles"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Raw JSON response from Ticketmaster venue search API",
  "additionalProperties": true
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "ticketmaster": {
      "url": "https://gateway.pipeworx.io/ticketmaster/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 8, 2026