Skip to main content
Glama

eenable — a shop with no checkout

Update what a booking is about

update_order_details
Idempotent

Change the session type or the brief on an existing booking — what the buyer wants to discuss, what they want out of it, or the background they want read first. Use this when the buyer refines their thinking after booking, which is common: people work out the real question after the date is in the diary. Only the fields you pass are changed. This does not move the meeting — use reschedule_booking for that.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYesMust match the order's email
topicNoReplaces what they want to discuss
order_idYes
backgroundNoReplaces the background the seller should read first
session_typeNoSwitch to a different session type
desired_outcomeNoReplaces what they want to walk away with

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already declare readOnly=false, idempotent=true, destructive=false. The description adds valuable context beyond these: partial update semantics (only passed fields change) and the explicit non-mutating boundary regarding meeting time. This enriches the behavioral model without contradicting annotations.

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 three sentences, front-loaded with the primary purpose, followed by a usage context and a clear distinction from a sibling tool. Every sentence earns its place with no redundancy or fluff.

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 mutation tool with no output schema, the description provides what an agent needs: what it does, when to use it, partial update behavior, and which sibling handles related cases. The annotations cover safety/idempotency, making this sufficient for correct selection and invocation.

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?

Schema coverage is high at 83%, so the baseline is 3. The description adds meaning by grouping topic, desired_outcome, and background under the concept of 'the brief' and by clarifying that only provided fields are changed, which is not fully explicit in the schema. The order_id parameter lacks description in the schema and the description does not compensate, but it is a standard required identifier.

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 uses a specific verb ('Change') and identifies the precise resource ('session type or the brief on an existing booking'). It further clarifies scope by naming the fields involved (what to discuss, desired outcome, background) and explicitly differentiates from reschedule_booking by stating it does not move the meeting.

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?

It explicitly states when to use the tool: 'when the buyer refines their thinking after booking.' It also provides a clear exclusion and alternative: 'This does not move the meeting — use reschedule_booking for that.' Additionally, it explains the partial update behavior ('Only the fields you pass are changed'), guiding proper invocation.

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