Local Events Finder
Server Quality Checklist
Latest release: v1.0.0
- Disambiguation4/5
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.
Naming Consistency3/5All 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.
Tool Count5/5Four tools is a well-scoped set for a local events finder, covering search, category browse, weekend selection, and detail retrieval without bloat.
Completeness4/5The 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.
Average 3.3/5 across 4 of 4 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 0 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.
If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.
MCP servers without a LICENSE cannot be installed.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior2/5
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.
Conciseness4/5Is 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.
Completeness2/5Given 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.
Parameters3/5Does 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.
Purpose4/5Does 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.
Usage Guidelines2/5Does 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.
- Behavior3/5
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.
Conciseness5/5Is 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.
Completeness3/5Given 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.
Parameters3/5Does 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.
Purpose4/5Does 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.
Usage Guidelines2/5Does 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.
- Behavior2/5
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.
Conciseness5/5Is 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.
Completeness3/5Given 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.
Parameters2/5Does 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.
Purpose5/5Does 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.
Usage Guidelines3/5Does 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.
- Behavior2/5
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.
Conciseness5/5Is 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.
Completeness3/5Given 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.
Parameters3/5Does 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.
Purpose5/5Does 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.
Usage Guidelines3/5Does 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.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
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