Skip to main content
Glama
dragosh29

TicketSource MCP server

by dragosh29

Get event with venues and dates

get_event
Read-only

Retrieve a single event's venues and performance dates, with an option to show only upcoming dates from today onwards.

Instructions

Get one event with its venues and performance dates. By default only dates from today onwards are returned.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
event_idYesEvent ID (evt-...)
upcoming_onlyNoOnly return dates from today onwards

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already establish readOnlyHint=true and openWorldHint=true, covering safety and schema extensibility. The description adds a valuable behavioral detail—the default filtering to dates from today onwards—which goes beyond the schema's default value by explaining the default behavior. No contradictions found.

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 fluff. The core purpose is front-loaded, and the behavioral default is stated in the second sentence. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only tool with two parameters and no output schema, the description covers the essential purpose, return contents, and a key default behavior. Nothing critical is missing for an agent to call it correctly.

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 both parameters are fully documented in the input schema. The description adds minimal semantic value beyond reinforcing the upcoming_only default via the sentence about dates from today. Baseline 3 is appropriate given high schema coverage.

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 states a specific verb ('get') and a precise resource ('one event with its venues and performance dates'), which clearly distinguishes it from list_events (plural) and list_upcoming_performances (performances only). The purpose is unambiguous and specific.

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 implicitly indicates use for retrieving a single event (as opposed to listing), but it does not explicitly name alternatives or conditions for choosing this over sibling tools like list_events. No exclusions are provided, leaving the agent to infer based on the word 'one'.

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