Skip to main content
Glama
Blackie360

Luma Events MCP Server

by Blackie360

Get Luma event

get_event
Read-only

Fetch full details for a specific Luma event using its event ID. Access all event information, including scheduling and registration data, without extra requests.

Instructions

Get complete details for one Luma event.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
event_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv0.7.5
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • removedInput schema / additionalProperties
      Removed value: -false
  2. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, covering the safety and external-data expectations. The description adds only 'complete details,' which hints at the response breadth but provides no explicit behavior about missing events, freshness, or response format.

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 a single, tightly worded sentence with no filler. It front-loads the action and resource and does not repeat information already present in the title.

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?

For a single-parameter retrieval tool, the description and schema are enough to construct the call. However, with no output schema, the description does not clarify what 'complete details' means, and the openWorldHint suggests external mutation but no re-fetch guidance is provided.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not add meaning to event_id beyond the schema. Although the parameter is simple and self-named, the description should have compensated for the lack of schema descriptions and did not.

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 the specific operation 'Get' and the resource 'Luma event', and qualifies the action as retrieving one event, which distinguishes it from listing or mutating events. The description is immediately understandable and maps directly to the tool's name and title.

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 'for one Luma event' implies this is for single-event retrieval, while the sibling list_events suggests the plural counterpart, but the description does not explicitly say when to choose this over list_events or any alternatives. No exclusions, prerequisites, or fallbacks are mentioned.

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