Skip to main content
Glama

search_events

Search for events near a location with optional filters. Every event returns a description: the organizer's own copy when the source published one, otherwise a factual summary generated from the listing (venue, local date and time, category, organizer, lineup). Also returns lineup, the performers in billing order with the headliner first. Use this to help users find events in a city or near coordinates.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityNoCity name like 'Berlin', 'New York', 'London'
limitNoMaximum number of events to return (default 20, max 100)
countryNoCountry name to filter by
categoryNoEvent category like 'electronic', 'rock', 'tech', 'crypto'
end_dateNoEnd date filter in ISO format (YYYY-MM-DD)
latitudeNoLatitude for location-based search
longitudeNoLongitude for location-based search
radius_kmNoSearch radius in kilometers (default 50)
start_dateNoStart date filter in ISO format (YYYY-MM-DD)

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations exist, so the description carries the burden of behavioral disclosure. It usefully explains that descriptions come from the organizer or are generated, and that lineup is ordered with the headliner first. It still does not address what happens when neither city nor coordinates are provided, or whether city and coordinates conflict.

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 with no filler. The core action is front-loaded, and the second sentence packs useful behavioral detail about descriptions and lineup without unnecessary explanation.

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?

The description explains key return semantics, but for a 9-parameter search tool with no output schema and no annotations, it leaves the interaction between city, latitude, longitude, and radius_km ambiguous. It also doesn't state sorting or default behavior when location filters are absent.

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?

The input schema covers 100% of the 9 parameters with meaningful descriptions, so the description is not required to re-explain each one. It conveys only a high-level 'near a location' framing, providing baseline value without adding syntax-level details.

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?

States a specific verb and resource: 'Search for events near a location with optional filters.' The final sentence reinforces its intended use for finding events in a city or near coordinates, making it clear which of the siblings (get_event_details, search_event_weeks, etc.) this tool belongs to.

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?

Provides an explicit direction: 'Use this to help users find events in a city or near coordinates.' It does not, however, mention when not to use it or point to alternative tools such as get_artist_events or search_event_weeks, so the routing is good but not exhaustive.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation4/5

Most tools target distinct resources and actions, such as get_artist vs get_artist_events and get_event_schedule vs get_now_playing. A few pairs like list_artists/search_artists and get_event_weeks/search_event_weeks could be confused, but their descriptions clarify browse vs search.

Naming Consistency4/5

Tool names follow a consistent verb_noun pattern with get, list, and search. Minor inconsistency exists because get_ is used for both singular retrieval (get_artist) and collection listing (get_cities, get_event_weeks), while list_ only appears in list_artists. Overall predictable and readable.

Tool Count4/5

16 tools is slightly above the typical 15-tool threshold but well-justified by the broad domain covering artists, events, venues, cities, event weeks, and organizers. Each tool serves a distinct purpose and none feel redundant.

Completeness4/5

The surface is comprehensive for a read-only events data API, covering artist browsing/search/details, event search/details/schedule/live, venue listing, city stats, event week management, and organizer search. Minor gaps include absent get_venue_details and get_organizer, but these can be derived from event details.

Resources