Ticketmaster Partner API

Ticketmaster Partner API

Enables discovery and search of Ticketmaster events, venues, and attractions with advanced filtering options including date ranges, location-based search, and event classifications through the Ticketmaster Partner API.

Category
Visit Server

README

MCP Server for Ticketmaster Partner API

smithery badge

A Model Context Protocol server that provides tools for accessing the Ticketmaster Partner API, enabling discovery of events, venues, and attractions with enhanced filtering and data capabilities.

Features

  • Comprehensive Search Capabilities:

    • Events with date/time filtering and on-sale date ranges
    • Venues with geographic search (lat/long, radius)
    • Attractions with classification filtering
    • Support for specific ID lookups
  • Advanced Filtering Options:

    • Keyword search
    • Date and time ranges (ISO 8601 format)
    • Location-based search (city, state, country, postal code)
    • Geographic radius search
    • Event classifications and categories
    • Market-specific searches
  • Flexible Output Formats:

    • Structured JSON for programmatic use
    • Human-readable text format
    • Pagination support (up to 200 results per page)

Installation

Installing via Smithery

To install mcp-server-tm-partner for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @delorenj/mcp-server-tm-partner --client claude

Manual Installation

npm install -g @delorenj/mcp-server-tm-partner

Configuration

The server requires Ticketmaster Partner API credentials. To obtain these:

  1. Visit Ticketmaster Developer Portal
  2. Sign up for a Partner API account (different from Discovery API)
  3. Request Partner API access if not already granted
  4. Obtain your API key and secret

Set your credentials in your MCP settings file:

{
  "mcpServers": {
    "tm-partner": {
      "command": "npx",
      "args": ["-y", "@delorenj/mcp-server-tm-partner"],
      "env": {
        "TM_PARTNER_API_KEY": "your-partner-api-key",
        "TM_PARTNER_API_SECRET": "your-partner-api-secret"
      }
    }
  }
}

Usage

The server provides a tool called search_tm_partner that accepts:

Required Parameters

  • type: Type of search ('event', 'venue', or 'attraction')

Optional Parameters

General Search

  • keyword: Search term
  • format: Output format ('json' or 'text', defaults to 'json')
  • size: Results per page (max 200, default 20)
  • page: Page number (0-indexed)
  • sort: Sort order for results

Event-Specific

  • eventId: Specific event ID to retrieve
  • startDateTime: Start date/time in ISO 8601 format
  • endDateTime: End date/time in ISO 8601 format
  • attractionId: Filter by attraction ID
  • venueId: Filter by venue ID
  • classificationName: Array of event categories
  • onsaleStartDateTime: On-sale start date/time
  • onsaleEndDateTime: On-sale end date/time

Location Parameters

  • city: City name
  • stateCode: State code (e.g., 'NY', 'CA')
  • countryCode: Country code (e.g., 'US', 'CA')
  • postalCode: Postal/ZIP code
  • latlong: Latitude,longitude for geographic search
  • radius: Search radius
  • unit: Unit for radius ('miles' or 'km')
  • marketId: Specific market ID

Examples

Search for Events in a Date Range

{
  "type": "event",
  "keyword": "concert",
  "startDateTime": "2025-02-01T00:00:00Z",
  "endDateTime": "2025-02-28T23:59:59Z",
  "city": "New York",
  "stateCode": "NY",
  "format": "text"
}

Find Venues Near a Location

{
  "type": "venue",
  "latlong": "40.7128,-74.0060",
  "radius": "10",
  "unit": "miles",
  "size": 50
}

Get Specific Event Details

{
  "type": "event",
  "eventId": "vvG1iZ4xGkdfJ",
  "format": "json"
}

Search Attractions by Classification

{
  "type": "attraction",
  "classificationName": ["Music", "Rock"],
  "keyword": "band",
  "size": 100
}

Development

  1. Clone the repository:

    git clone https://github.com/robandrewford/mcp-server-tm-partner.git
    cd mcp-server-tm-partner
    
  2. Install dependencies:

    npm install
    
  3. Create a .env file with your credentials:

    TM_PARTNER_API_KEY=your-partner-api-key
    TM_PARTNER_API_SECRET=your-partner-api-secret
    
  4. Build the project:

    npm run build
    
  5. Test with the MCP Inspector:

    npm run inspector
    

API Differences from Discovery API

The Partner API provides several advantages over the public Discovery API:

  • Enhanced Data Access: More detailed event, venue, and attraction information
  • Higher Rate Limits: Suitable for production applications
  • Additional Endpoints: Access to partner-specific features
  • Priority Support: Direct support channel for partners

Contributing

Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.

License

MIT License - see LICENSE file for details

Support

For issues and questions:

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured