events-mcp
Server Details
Discover tech events, startup meetups, AI events across 8 cities — including hidden ones.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- himanshusaleria/events-mcp
- GitHub Stars
- 2
- Server Listing
- Events MCP
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.9/5 across 3 of 3 tools scored.
Each tool serves a distinct purpose: listing cities, getting upcoming events, and searching events. No overlap or ambiguity.
All tools use consistent snake_case verb_noun pattern (get_upcoming_events, list_cities, search_events), making them predictable.
Three tools is slightly minimal but appropriate for a focused read-only events discovery server. Covers essential browsing and search.
Covers city listing, upcoming events, and search. Missing ability to fetch a single event by ID or manage events, but for a read-only service it's nearly complete.
Available Tools
3 toolsget_upcoming_eventsAInspect
Get the next upcoming events in a specific city, sorted by date. Great for finding what's happening soon.
| Name | Required | Description | Default |
|---|---|---|---|
| city | Yes | City key (e.g. 'bengaluru', 'sf', 'mumbai') | |
| limit | No | Number of events (default 10, max 50) | |
| offset | No | Skip first N events for pagination |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses 'sorted by date' but does not specify that it is a read operation, return format, or any potential side effects. It provides basic behavioral context but lacks depth.
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?
Two sentences, no extraneous words. Front-loaded with the action and key context. Every sentence adds value.
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 tool's simplicity (3 parameters, no output schema) and sibling tools covering other aspects, the description provides sufficient context for its purpose. The missing output description is acceptable for a list-returning tool.
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?
Schema description coverage is 100%, so baseline is 3. The description adds no parameter-specific meaning beyond the schema. 'Sorted by date' is behavioral, not param-related. The city, limit, and offset are adequately described 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 'Get the next upcoming events in a specific city, sorted by date', specifying the verb (Get), resource (upcoming events), and context (city, sorted by date). This distinguishes it from sibling tools like 'list_cities' and 'search_events'.
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 phrase 'Great for finding what's happening soon' implies use case, but there is no explicit guidance on when to use this tool versus 'search_events' or 'list_cities'. No alternatives or exclusions are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_citiesAInspect
List all available cities with event counts. Use this to see which cities have events and how many.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must convey behavioral traits. It describes the action (listing) and data returned (cities with counts), but doesn't explicitly state read-only nature or other constraints. Adequate but not exhaustive.
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?
Two sentences, front-loaded with key action and purpose. No superfluous information.
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 tool has no parameters, no output schema, and simple function, the description is complete enough to guide an agent. Could mention if results are sorted or limited, but not necessary.
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?
No parameters exist (0 params, 100% schema coverage), so baseline is 4. The description adds meaning by specifying 'event counts' beyond just listing city names.
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 it lists all available cities with event counts, distinguishing it from siblings like get_upcoming_events (which lists events) and search_events (which searches events).
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?
Explicitly states when to use ('to see which cities have events and how many'), though it doesn't mention when not to use alternatives. Given the simple nature, this is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_eventsAInspect
Search for tech events, startup meetups, AI events, and more across cities. Searches event names, hosts, organizers, and tags.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | Filter by city key (e.g. 'bengaluru', 'sf', 'new-delhi') | |
| limit | No | Max results (default 20, max 50) | |
| query | Yes | Search query (e.g. 'AI meetup', 'hackathon', 'startup dinner') | |
| to_date | No | End date filter (ISO 8601) | |
| from_date | No | Start date filter (ISO 8601, e.g. '2026-05-20') |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the burden. It discloses the search fields but omits behavioral details like read-only nature, pagination, sorting, or behavior on no results. The description is adequate but not comprehensive.
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 two sentences, front-loaded with purpose, and contains no redundant information. Every word earns its place.
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 no output schema and no annotations, the description covers the core purpose and search fields. However, it misses mention of date range filtering (present in schema), output format, and relationship to sibling tools. It is adequate but not fully complete.
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?
Schema description coverage is 100%, so baseline is 3. The description adds context by naming search fields (names, hosts, etc.) but does not significantly extend beyond the schema. It does not explain date parameters or other nuances.
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 searches for tech events, startup meetups, AI events across cities, and specifies the fields searched (names, hosts, organizers, tags). This distinguishes it from siblings like get_upcoming_events (no search) and list_cities (city metadata).
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 searching by query and city, but does not explicitly contrast with sibling tools or provide when-not-to-use guidance. The sibling names offer implicit context but the description itself lacks explicit usage guidelines.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Your Connectors
Sign in to create a connector for this server.