Local Events Finder
Search for local events by city, category, keyword, or weekend using the Ticketmaster Discovery API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Local Events FinderFind jazz concerts in New York this weekend"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
🎟 Local Events Finder — MCP Server
An MCP server that connects Claude to the Ticketmaster API, letting users discover local events by city, category, keyword, or weekend — all from a natural conversation.
Tools Exposed
Tool | Description |
| Search events in any city by keyword |
| Browse Music, Sports, Arts, Film, or Misc |
| Full details for a specific event ID |
| Events happening this Friday–Sunday |
Related MCP server: SeatGeek MCP Server
Example Prompts (once connected to Claude)
"Find jazz events in Chicago this weekend"
"What sports events are happening in Toronto?"
"Show me 10 upcoming events in New York"
"Get details for event ID Z698xZC2Z17avvl"
Setup
1. Get a Ticketmaster API Key (free)
Sign up at developer.ticketmaster.com → Create App → copy your Consumer Key.
2. Clone & Install
git clone https://github.com/yourusername/local-events-mcp
cd local-events-mcp
npm install3. Build
npm run build4. Connect to Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"local-events": {
"command": "node",
"args": ["/absolute/path/to/local-events-mcp/dist/index.js"],
"env": {
"TICKETMASTER_API_KEY": "your_api_key_here"
}
}
}
}Then restart Claude Desktop and start asking about events!
Privacy Policy
This server does not store any user data. All queries are passed directly to the Ticketmaster Discovery API. No personal information is collected or retained.
License
MIT
Available Tools
4 toolsevents_by_categoryC
Browse events in a city filtered by category such as Music, Sports, Arts, Family, or Comedy.
| Name | Required | Description | Default |
|---|---|---|---|
| city | Yes | City name | |
| size | No | ||
| category | Yes | Event category to browse |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries the full burden of behavioral disclosure. It only states the action without mentioning result format, pagination (e.g., size parameter), or any limitations. The 'browse' phrasing suggests a read operation, but no specifics are given.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that is direct and front-loaded with the action. It is concise but includes imprecise category examples that could be removed without loss of meaning.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the low complexity, the description is too sparse. It lacks any mention of output structure, sorting, or interaction with the size parameter. Moreover, the absence of usage guidance relative to siblings makes the tool contextually incomplete for an agent selecting among similar tools.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers 'city' and 'category' with descriptions, and the tool description adds examples of categories, though these are inconsistent with the enum. The 'size' parameter has no description in schema or description, leaving one parameter semantically undocumented. The description adds marginal value but does not fully compensate for the missing size semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the verb 'browse' and specifies the resource 'events in a city filtered by category,' making the core purpose clear. It distinguishes from siblings like search_events and get_event_details by focusing on category-based browsing. However, the example categories (Family, Comedy) don't match the actual enum values, introducing minor confusion.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus sibling tools such as search_events or weekend_events. The description implies usage for browsing by category, but there is no explicit exclusion or alternative mention, leaving the agent to infer the appropriate context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_event_detailsA
Get full details for a specific event using its Ticketmaster event ID.
| Name | Required | Description | Default |
|---|---|---|---|
| eventId | Yes | Ticketmaster event ID |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the full burden of behavioral disclosure. It only says 'Get full details' without specifying what those details include, any error behavior (e.g., invalid ID, not found), authentication requirements, or response format. This lack of extra behavioral context beyond the tool's name is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler or redundancy. Every word contributes to explaining the tool's purpose, making it both concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is relatively simple (1 parameter, no output schema), and the description covers the basic purpose. However, it lacks contextual details about the returned content ('full details' is vague), error conditions, or how this differs from the sibling search tools. Given the low complexity, the description is minimally viable but has clear gaps that would benefit from elaboration.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already describes the only parameter 'eventId' as 'Ticketmaster event ID' with 100% coverage. The description adds no additional meaning beyond rephrasing the schema ('using its Ticketmaster event ID'), so the schema does the heavy lifting. Baseline of 3 is appropriate since there is no added semantic value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states 'Get full details for a specific event using its Ticketmaster event ID,' which clearly identifies both the action (get details) and the resource (a specific event). This distinguishes it from sibling tools like search_events or events_by_category, which focus on listing or filtering events rather than retrieving a single event's full details.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies that this tool should be used when you have a specific event ID and need full details, but it does not explicitly state when to use it over the sibling tools or provide any when-not-to-use guidance. The context is clear but unstated, so the usage guidance is only implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_eventsB
Search for local events by city or keyword. Returns upcoming events with dates, venues, prices, and ticket links.
| Name | Required | Description | Default |
|---|---|---|---|
| city | Yes | City name, e.g. 'New York' or 'Toronto' | |
| size | No | Number of results to return (1–20, default 5) | |
| keyword | No | Optional keyword to filter events, e.g. 'jazz' or 'comedy' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. It does add value by specifying that results include upcoming events with dates, venues, prices, and ticket links. However, it does not explicitly state read-only behavior, potential limitations, or response structure beyond the listed fields, which would be expected given no annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that efficiently covers purpose and return content. No wasted words, and the most important information (searchable fields and output components) is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple, with three parameters and a clear return description, and the absence of an output schema is partially mitigated by the return-content statement. However, the lack of any usage guidance or differentiation from sibling tools leaves a gap in contextual completeness. An agent cannot determine when to prefer this over events_by_category or weekend_events.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% coverage with clear descriptions for each parameter. The description's mention of 'city or keyword' partially aligns with the schema but adds no additional semantic detail beyond what the schema already provides. Baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'search' and the resource 'local events', and specifies the search attributes (city or keyword). It also indicates what is returned (upcoming events with dates, venues, prices, ticket links). While it doesn't explicitly contrast with sibling tools like events_by_category or weekend_events, the scope is clear enough to be differentiated.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this tool versus alternatives. The description does not mention events_by_category, weekend_events, or get_event_details, nor does it provide exclusions. Usage is only implied by the tool's name and search-based functionality.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
weekend_eventsB
Find events happening this weekend in a given city.
| Name | Required | Description | Default |
|---|---|---|---|
| city | Yes | City name | |
| size | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry behavioral disclosure alone. It only says 'Find events' and does not mention result limits (size parameter), ordering, pagination, or any side effects. The existence of the size parameter and its impact on results is entirely undisclosed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one short sentence that is front-loaded with the main action and contains zero unnecessary words. It is appropriately sized for the tool's simplicity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple two-parameter tool with no output schema, the description covers the core action but leaves notable gaps: it does not state the return format, the effect of the size parameter, or how results are ordered. It is minimally viable but lacks detail needed for full comprehension.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema describes city but not size, and the tool description adds no semantics for either parameter. The size parameter, with its default of 8 and maximum of 20, is completely unexplained, and the description only reinforces the city parameter's basic meaning already present in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('Find'), resource ('events'), and scope ('this weekend' in a given city). It distinguishes from siblings by the weekend-specific focus, which is not present in search_events or events_by_category.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use for weekend-specific event lookups, but does not explicitly contrast with alternatives like search_events or events_by_category. There is no 'when not to use' guidance, leaving the timing of choosing this tool over siblings implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool has a clear primary purpose: general search, category browsing, specific details, and weekend filtering. Search and weekend/category tools overlap somewhat, but descriptions make the distinctions clear.
All names use lowercase snake_case, but the pattern is mixed: two are verb_noun (search_events, get_event_details) and two are noun phrases (events_by_category, weekend_events). Names are still descriptive and predictable.
Four tools is a well-scoped set for a local events finder, covering search, category browse, weekend selection, and detail retrieval without bloat.
The surface covers core event discovery flows: general search, category filtering, weekend-specific lookup, and detail view. A date-range filter is missing but not a critical gap for basic functionality.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Talk to your live-events CRM (campaigns, analytics, paid ads, segments) in Claude and ChatGPT.
Booking gateway for AI agents — discover events, movies & hotels, hand off to partner checkout.
Connect Claude to Fathom meeting recordings, transcripts, and summaries
Connect Claude to your Platform7n workspaces — chat, links, and tasks. One-click OAuth.
Related MCP Servers
- FlicenseBqualityDmaintenanceThis server integrates with the Ticketmaster API to provide AI agents with real-time concert and event data, enabling dynamic fetching and formatting for ease of interpretation.12
- AlicenseAqualityDmaintenanceEnables users to search for events, performers, and venues through the SeatGeek API. Provides event recommendations, detailed venue seating information, and performer discovery capabilities for ticketed entertainment events.43MIT
- FlicenseNot gradedqualityDmaintenanceEnables Claude Desktop to interact with the Kynhood Events API, allowing users to list events with pagination and retrieve detailed event information through natural language queries.
- AlicenseCqualityDmaintenanceEnables 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.1MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/raheeltanvir/local-events-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server