- Home
- MCP servers
- Ticketmaster
Ticketmaster
- typescript
23
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"delorenj-mcp-server-ticketmaster": {
"command": "npx",
"args": [
"-y",
"@delorenj/mcp-server-ticketmaster"
],
"env": {
"TICKETMASTER_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}You can use this MCP server to discover events, venues, and attractions via the Ticketmaster Discovery API. It returns structured data for programmatic use and human-readable text for quick consumption, making it easier to build tools and workflows around live events information.
How to use
Install and run the Ticketmaster MCP server, then query it from your MCP client using the provided tool set. The primary tool is search_ticketmaster, which supports searching by event, venue, or attraction with flexible filters. You can filter by keywords, dates, location, venue or attraction IDs, classifications, and more. Choose json for structured data to feed into applications, or text for a readable summary.
Common usage patterns include: searching for events in a specific city within a date range, finding venues by location, or listing attractions within a category. You can combine multiple optional parameters to refine results and control the output format to suit your needs.
How to install
Prerequisites: ensure you have Node.js and npm installed on your system.
Install the Ticketmaster MCP server locally using the package you need.
# Manual installation (local MCP server)
npx -y install @delorenj/mcp-server-ticketmaster
Configuration and startup
Configure the MCP server with your Ticketmaster API key. Create or update your MCP settings to include the server under mcpServers with the required environment variable.
{
"mcpServers": {
"ticketmaster": {
"command": "npx",
"args": ["-y", "@delorenj/mcp-server-ticketmaster"],
"env": {
"TICKETMASTER_API_KEY": "your-api-key-here"
}
}
}
}
Usage notes and tips
- Store your Ticketmaster API key securely and do not commit it to public repositories.
- The server returns both structured JSON data and human-readable text; choose the
formatparameter accordingly when you call the tool. - Validate results against Ticketmaster’s terms of use and data policies when displaying or distributing information.
Available tools
search_ticketmaster
Tool to search Ticketmaster data with type (event, venue, attraction) and optional filters like keyword, date range, location, identifiers, classifications, and output format.