# Ticketmaster — MCP server on mcp.ai > Ticketmaster provides APIs for event discovery, inventory management, and ticketing solutions. By: mcp.ai · official Page: https://mcp.ai/ticketmaster ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_ticketmaster?ms=1781542320000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/ticketmaster/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/ticketmaster/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/ticketmaster/skill.md Postman collection (v2.1): https://mcp.ai/ticketmaster/postman.json ## Tools - ticketmaster_get_attraction_details(id: string, locale?: string, include?: string) — Tool to retrieve detailed information about a specific attraction by id. use when you have an attraction id and need full details. - ticketmaster_get_attractions(page?: integer, size?: integer, sort?: string, type?: string, source?: string, genreId?: string, keyword?: string, segmentId?: string, subGenreId?: string, countryCode?: string, includeTest?: boolean, attractionId?: string, subSegmentId?: string, classificationName?: string) — Tool to retrieve a list of attractions. use when you need to search for artists, teams, or performers by various criteria such as keyword, classification, or country. - ticketmaster_get_classification_details(id: string) — Tool to retrieve detailed information about a specific classification. use after obtaining a classification id. - ticketmaster_get_classifications(locale?: string, countryCode?: string, classificationId?: string) — Tool to retrieve all event classifications. use when categorizing events before searching. - ticketmaster_get_event_details(id: string) — Tool to retrieve detailed information about a specific event by id. use when you have an event's unique identifier and need its full details. - ticketmaster_get_events(city?: string, page?: integer, size?: integer, sort?: string, unit?: string, dmaId?: string, locale?: string, radius?: number, keyword?: string, latlong?: string, venueId?: string, stateCode?: string, postalCode?: string, countryCode?: string, endDateTime?: string, attractionId?: string, startDateTime?: string, includeSpellcheck?: boolean, classificationName?: string) — Tool to retrieve a list of events matching specified filters. use when you need to search events by keyword, location, date range, or classification. - ticketmaster_get_genre_details(id: string) — Tool to retrieve detailed information about a specific genre. use when you need metadata for a single genre before filtering events by genre. - ticketmaster_get_segment_details(id: string) — Tool to retrieve detailed information about a specific segment. use after obtaining a segment id. - ticketmaster_get_subgenre_details(id: string, locale?: string) — Tool to retrieve detailed information about a specific subgenre. use when you have a subgenre id and need its details. - ticketmaster_get_suggestions(keyword?: string, countryCode?: string) — Tool to retrieve auto-complete suggestions for search queries. use when you have a partial keyword and want to get matching attractions, venues, or events. - ticketmaster_get_venue_details(id: string) — Tool to retrieve detailed information about a specific venue by id. use when you have a venue's unique identifier and need its full details. - ticketmaster_get_venues(id?: string, city?: string, page?: integer, size?: integer, sort?: string, dmaId?: string, radius?: integer, keyword?: string, latlong?: string, stateCode?: string, postalCode?: string, countryCode?: string) — Tool to retrieve a list of venues based on specified criteria. use when you need venue details by name, location, or id. ## Links Docs: https://mcp.ai/docs/mcps/ticketmaster Website: https://mcp.ai/mcps/ticketmaster