Skip to main content
Glama

get_ticket_class

Retrieve detailed information about a specific ticket class for an event by providing the event ID and ticket class ID.

Instructions

Get details of a specific ticket class.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
event_idYes
ticket_class_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of disclosing behavior. It only says 'get details', which implies a read operation, but it does not mention return structure, error conditions, permissions, or side effects. With no annotation support, this is a notable gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence with no filler and front-loads the key verb and object. It earns its place, though it could have been slightly more informative without becoming verbose.

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?

This is a simple read operation with two required identifiers and an output schema present, so the description does not need to explain return values. However, lacking any usage guidance or behavioral caveats leaves it only minimally complete for an agent deciding whether this is the right tool.

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 adds no parameter-level meaning beyond the schema field names. The parameter names event_id and ticket_class_id are reasonably self-explanatory, but the tool description does not help clarify their relationship or required format, so it fails to compensate for low schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get') and the resource ('details of a specific ticket class'), effectively distinguishing it from list-style siblings like list_ticket_classes by emphasizing 'specific'. It is a bit generic in not enumerating what 'details' includes, but the core purpose is unambiguous.

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?

Usage is implied: an agent should call this when it has both event_id and ticket_class_id and wants information about a single ticket class. However, the description does not explicitly compare to alternatives such as list_ticket_classes or state when not to use it, leaving the routing decision mostly to inference.

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

Deploy Server

Other Tools