attraction_search
Pack: ticketmaster · Endpoint: https://gateway.pipeworx.io/ticketmaster/mcp
Ticketmaster Discovery API — search attractions (artists, sports teams, performers) by keyword, classificationName, or other filters. Returns attraction name, ID, classifications, and images.
Example call
Arguments
{
"keyword": "taylor swift"
}
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":"attraction_search","arguments":{"keyword":"taylor swift"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('attraction_search', {
"keyword": "taylor swift"
});
More examples
{
"keyword": "coldplay",
"countryCode": "US"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Raw JSON response from Ticketmaster attraction 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.