Skip to main content
Glama

get_event

Get full details of one event by its id (from search_events results), including provenance (source, last_seen_at, still_listed, price_as_of, confidence) and venue facilities.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

TDQS

A4.2/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden of explaining behavior. It discloses what the response includes (provenance fields and venue facilities), which is useful, but it does not describe error behavior, missing-event responses, or whether any authentication/restrictions apply. The description adds meaningful output detail but leaves some behavioral gaps.

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?

A single front-loaded sentence conveys the tool's purpose, input source, and key output fields without wasted words. The parenthetical listing of provenance subfields is compact and immediately relevant.

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?

For a simple single-id fetch tool with no output schema, the description covers the critical details: what to pass in and what to expect back. It does not discuss error responses or edge cases, but the core information needed to call the tool correctly is present.

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?

Schema coverage is 0%, so the description must compensate. It does so by explaining that the id should come from search_events results, adding important semantic context beyond the bare string type. For a single parameter, this is sufficient guidance.

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 uses a specific verb ('Get full details') and identifies the exact resource ('one event by its id'). It also names the source of the id ('from search_events results') and lists key returned fields, making the tool's purpose distinct from siblings like get_event_history or 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 Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'from search_events results' provides clear context on how to obtain the required id and implies that search_events should be used first. It does not explicitly state when not to use this tool or name alternatives like get_event_history, but the usage context is clear enough.

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

A4/5.0
Disambiguation5/5

Each tool has a clearly distinct role: venue finders (bars, museums), event search, ticket price comparison, event details, change history, taxonomy, and a curated nightly snapshot. While find_bars and search_events could theoretically overlap for nightlife, the descriptions explicitly scope them to venues vs. events, eliminating ambiguity.

Naming Consistency4/5

The tool names mostly follow a verb_noun pattern: find_* for venue discovery, get_* for retrieval, search_events for event search. However, `whats_on_tonight` breaks the pattern with an idiomatic phrase, and `find` vs `search` are used interchangeably for discovery, causing minor inconsistency.

Tool Count5/5

With 8 tools, the server is well-scoped for an LA event discovery service covering search, venue lookups, ticket prices, history, taxonomy, and a nightly roundup. Each tool earns its place without redundancy or bloat.

Completeness5/5

The tool surface covers the full read-only lifecycle: searching events, finding bars and museums, retrieving event details, comparing ticket prices, viewing historical changes, and exploring taxonomy tags. For its stated purpose of providing a synoptic LA event view, there are no significant gaps.

Resources