Skip to main content
Glama

Pay with a Toots Pass

redeem_pass

Applies a Toots Pass code (given to you by the buyer; format XXX-XXXXXX-XXX) to a held booking, after set_contact. Covers as many tickets as the pass has concerts left. If the order is fully covered the booking completes immediately (status paid); otherwise the response carries the payment_url for the balance. The code is a venue credential, not a payment instrument.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
codeYesThe Toots Pass code, exactly as the buyer gave it.
localeNoLanguage for titles, labels and the returned URLs. Defaults to fr.
booking_uuidYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A4.3/5.0
Behavior4/5

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

The description adds value beyond the annotations by disclosing the conditional outcome: 'If the order is fully covered the booking completes immediately (status paid); otherwise the response carries the payment_url for the balance.' This explains the mutation behavior and edge case. It does not contradict the readOnlyHint=false, idempotentHint=false, or destructiveHint=false annotations, and supplements them with actionable context.

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 concise and front-loaded: it opens with the core action and prerequisite, then explains the behavior and outcome. Each sentence contributes new information—code format, coverage logic, and payment_url fallback—with no redundancy. It is slightly longer than minimal, but the extra sentences all serve clarity.

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?

Given the output schema exists, the description doesn't need to detail return values, but it still explains the conditional payment_url outcome, which helps the agent anticipate responses. It also covers the code format and the prerequisite, making it sufficiently complete for correct invocation. Minor gaps like error handling are likely covered by the output schema, so this is well-rounded.

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?

The description compensates for the missing schema description of booking_uuid by referring to a 'held booking', implying the UUID's purpose. For the code, it adds format details (XXX-XXXXXX-XXX) and clarifies its origin and role, which are not in the schema. The locale parameter is well-described in the schema, so no additional context is needed. Overall, it bridges the 67% schema coverage gap effectively.

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 action ('Applies a Toots Pass code') on a specific resource ('held booking'), and differentiates this from sibling tools like redeem_gift_card by explicitly identifying the credential type and its role. It also mentions the prerequisite 'after set_contact', which adds clarity about the workflow step.

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 description gives clear context for use: it must be used after set_contact, and it clarifies that the code is a venue credential, not a payment instrument, which helps the agent decide when to select this tool over alternatives. However, it does not explicitly list alternative tools or exclusion conditions beyond the prerequisite, so it stops short of full when/when-not guidance.

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.1/5.0
Disambiguation4/5

Most tools target distinct steps in the booking lifecycle, but get_booking_status and wait_for_payment serve nearly the same purpose, and get_event/list_events/get_availability all surface availability. Descriptions are strong enough to prevent frequent misselection.

Naming Consistency5/5

All tools use a consistent verb_noun snake_case pattern (get_*, hold_tickets, redeem_*, release_booking, set_contact, wait_for_payment). There are no style or naming convention breaks.

Tool Count5/5

Twelve tools map cleanly to the ticket-buying workflow: discovery, venue info, availability, hold, contact, payment, redemption, release, status, and recovery. Each tool earns its place without redundant bulk.

Completeness4/5

The lifecycle is well covered: hold, contact, payment, redemption, release, and post-sale recovery are all present. The only notable gap is lack of any cancellation/refund path for paid bookings, though this may be intentional venue policy.

Resources