Skip to main content
Glama

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.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 3.9/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool serves a distinct purpose: listing cities, getting upcoming events, and searching events. No overlap or ambiguity.

Naming Consistency5/5

All tools use consistent snake_case verb_noun pattern (get_upcoming_events, list_cities, search_events), making them predictable.

Tool Count4/5

Three tools is slightly minimal but appropriate for a focused read-only events discovery server. Covers essential browsing and search.

Completeness4/5

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 tools
get_upcoming_eventsAInspect

Get the next upcoming events in a specific city, sorted by date. Great for finding what's happening soon.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityYesCity key (e.g. 'bengaluru', 'sf', 'mumbai')
limitNoNumber of events (default 10, max 50)
offsetNoSkip first N events for pagination
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNoFilter by city key (e.g. 'bengaluru', 'sf', 'new-delhi')
limitNoMax results (default 20, max 50)
queryYesSearch query (e.g. 'AI meetup', 'hackathon', 'startup dinner')
to_dateNoEnd date filter (ISO 8601)
from_dateNoStart date filter (ISO 8601, e.g. '2026-05-20')
Behavior3/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.