Skip to main content
Glama

eenable — a shop with no checkout

Order a certificate

order_certificate

Buy a certificate. Certificates are objects, not appointments: there is no slot, no calendar entry and no meeting. One is issued the moment payment settles, emailed as a PDF, and registered against a hash anyone can verify. Use this instead of create_order, which is only for booking time. As with sessions, show the buyer what is on offer and let them choose rather than deciding for them.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesBuyer's name, as it should appear on the certificate as the bearer
emailYesBuyer's email — the certificate is sent there
certificate_idYesWhich certificate. From list_products: ai-repellent.
catalogue_tokenYesThe catalogue_token from list_products. If you do not have one, send any value and the reply will contain the catalogue and the token.
buyer_confirmed_choiceYesSet true only if you showed the buyer what this is and they asked for it. Buying an artwork on someone's behalf without asking is not acceptable here.

TDQS

A4.7/5.0
Behavior5/5

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

Annotations only declare readOnlyHint=false, idempotentHint=false, destructiveHint=false. The description adds substantial behavioral context: the certificate is issued at payment settlement, emailed as a PDF, and registered against an hash. It also clarifies that no slot, calendar entry, or meeting is created, which is crucial for an agent to understand the tool's side effects.

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 five sentences, each serving a distinct purpose: the core action, the artifact's nature, the issuance process, the sibling alternative, and the buyer-consent rule. No sentence is filler; it is front-loaded with the most important information and remains compact given the tool's complexity.

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?

Despite having no output schema, the description provides essential outcome details (PDF emitted, hash registry) and operational guidance (payment, buyer choice). It fully differentiates the tool from create_order and covers the required parameters' intent, making the tool actionable for an agent. The lack of an exact response structure is a minor gap, but the description is otherwise complete.

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?

The input schema describes all five parameters with 100% coverage, including detailed explanations for catalogue_token and buyer_confirmed_choice. The description does not introduce new parameter formats or constraints beyond the schema; the buyer-consent guidance in the description largely echoes the schema's instruction for buyer_confirmed_choice. With high schema coverage, a baseline of 3 is appropriate.

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 opens with a specific verb and resource ('Buy a certificate') and explicitly contrasts itself with the sibling tool create_order ('Use this instead of create_order, which is only for booking time'). It also clarifies that certificates are objects, not appointments, eliminating any ambiguity about scope.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

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

The description explicitly states when to use the tool and names the alternative to avoid: 'Use this instead of create_order, which is only for booking time.' It also adds a buyer-consent guideline ('As with sessions, show the buyer what is on offer and let them choose'), giving clear operational rules beyond simple tool selection.

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 have clearly distinct purposes, especially the session booking lifecycle and certificate operations. However, the four deprecated aliases (cancel_booking, get_booking, reschedule_booking, update_booking) perform exactly the same actions as their new counterparts, creating potential confusion despite the deprecation notices.

Naming Consistency3/5

Newer tools follow a verb_noun pattern (create_order, cancel_order, get_order_details, reschedule_session), but the use of 'order' vs 'session' is inconsistent, and 'order_certificate' uses 'order' as a verb. The deprecated aliases mixing 'booking' with 'order' further muddies the convention, making the overall naming only moderately predictable.

Tool Count4/5

At 16 tools the set feels slightly heavy, but four are deprecated aliases that are exact duplicates of active tools. The effective 12 unique tools are well-scoped for a shop handling both session bookings and certificate purchases, so the count is reasonable.

Completeness4/5

The session booking lifecycle is fully covered (availability, create, cancel, reschedule, update, status, details) and certificate operations (order, transfer, renounce) are present. Minor gaps exist, such as no way to list all orders or verify a certificate, but these are not critical to the core workflows.

Resources