Skip to main content
Glama

eenable — a shop with no checkout

Transfer a certificate to a new bearer

transfer_certificate

Pass a certificate to someone else. Klein's receipts carried a clause — a transferable zone may be ceded by its owner only at double its initial purchase value — so a transfer here costs exactly twice what the certificate cost, and the shop will not do it for less. The serial number and the hash do not change: it is the same object endorsed to a new bearer, not a new certificate. Returns a payment link; the transfer takes effect once it is paid.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
order_idYesThe order number of the certificate being transferred, from the PDF
new_bearer_nameYesWho it is passing to, as they should appear on the certificate
new_bearer_emailYesThe new bearer's email — the endorsed certificate is sent there

TDQS

A4.7/5.0
Behavior5/5

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

Annotations only provide false flags for readOnly, idempotent, and destructive, which are minimal. The description adds critical behavioral details: the transfer costs exactly twice the initial purchase value, the serial number and hash remain unchanged, and the transfer takes effect only after payment via a returned payment link. This goes far beyond the annotations and fully discloses the operation'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 front-loaded with the primary action and then provides essential operational details: the pricing rule, the unchanged identifiers, and the payment/effect timing. Every sentence serves a purpose, including the historical clause which explains the cost rationale. It is compact and well-structured.

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?

This is a 3-parameter tool with no output schema, yet the description covers the action, the cost, the non-reissuance of the certificate, and the post-payment activation. There are no obvious gaps that would prevent an agent from selecting and invoking the tool correctly.

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 input schema already covers all three parameters with descriptions, so the baseline is 3. The description adds extra meaning by clarifying that the cost is tied to the certificate's initial purchase value (relevant to order_id) and reinforcing that the new_bearer_email is where the endorsed certificate is sent. This supplemental context enhances parameter understanding beyond the schema.

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 'Pass a certificate to someone else,' using a specific verb and resource that clearly identifies the action. It further distinguishes from siblings by stating it is the same object endorsed to a new bearer, not a new certificate, which differentiates it from create/order/cancel operations.

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?

Clear context is provided: the tool transfers a certificate to a new bearer, with an explanation of the double-cost rule and the payment-link flow. It does not explicitly name alternative tools or state when not to use it, but the use case is unambiguous.

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