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.
README
MCP Server for Ticketmaster Partner API
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:
- Visit Ticketmaster Developer Portal
- Sign up for a Partner API account (different from Discovery API)
- Request Partner API access if not already granted
- 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 termformat: 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 retrievestartDateTime: Start date/time in ISO 8601 formatendDateTime: End date/time in ISO 8601 formatattractionId: Filter by attraction IDvenueId: Filter by venue IDclassificationName: Array of event categoriesonsaleStartDateTime: On-sale start date/timeonsaleEndDateTime: On-sale end date/time
Location Parameters
city: City namestateCode: State code (e.g., 'NY', 'CA')countryCode: Country code (e.g., 'US', 'CA')postalCode: Postal/ZIP codelatlong: Latitude,longitude for geographic searchradius: Search radiusunit: 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
-
Clone the repository:
git clone https://github.com/robandrewford/mcp-server-tm-partner.git cd mcp-server-tm-partner -
Install dependencies:
npm install -
Create a
.envfile with your credentials:TM_PARTNER_API_KEY=your-partner-api-key TM_PARTNER_API_SECRET=your-partner-api-secret -
Build the project:
npm run build -
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:
- GitHub Issues: https://github.com/robandrewford/mcp-server-tm-partner/issues
- Ticketmaster Partner Support: Available through your partner portal
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。