Skip to main content
Glama

Move a booking to a new time

reschedule_booking
Destructive

Moves an existing yesmcp consultation booking to a different window, keeping the same reference. Requires the booking reference and the email the booking was made with, plus the slotId of the new window from list_availability — ask for all three. The move is only committed once the new confirmation email is accepted; if it fails, the original time stays booked. Times are returned in yesmcp's timezone with an explicit UTC offset (for example 2026-08-27 14:00 CEST (UTC+2)). Before you confirm anything with the user, ask which timezone or city they are in, then state the slot in BOTH their timezone and yesmcp's. Never show a bare wall-clock time.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYesThe email address the booking was made with.
bookingIdYesThe booking reference, exactly as in the confirmation email.
newSlotIdYesThe `slotId` of the new window, as returned by list_availability.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.5/5.0
Behavior5/5

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

Even with annotations marking this as destructive and non-idempotent, the description adds meaningful behavioral detail: the move is not committed until the confirmation email is accepted, a failure leaves the original booking intact, and times must be shown in both the user's timezone and yesmcp's timezone with an explicit UTC offset. This goes well beyond the 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 dense but not bloated, and every sentence earns its place: purpose, required inputs, commit semantics, time format, and timezone handling rules. The most important constraints are front-loaded and the no-bare-time rule is a sharp, actionable final instruction.

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 state-changing tool with no output schema, the description covers prerequisites, the source of the new slot ID, failure behavior, and how to present results to the user. There is enough information for an agent to invoke it correctly and to handle the conversation and safety-sensitive timezone aspects.

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 the schema already documents each parameter completely. The description reinforces that all three inputs are required and that newSlotId comes from list_availability, but it does not add substantially new parameter semantics beyond what the schema already conveys.

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 clearly states the tool moves an existing consultation booking to a different window while preserving the reference. This distinguishes it from book_consult (new booking) and cancel_booking (removal), and the verb-resource pairing is specific and unambiguous.

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 specifies the required inputs, points to list_availability as the source for newSlotId, and tells the agent to ask for all three pieces of user data. It does not explicitly contrast with cancel-and-rebook workflows, but the workflow guidance is strong enough for an agent to select and sequence this tool correctly.

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

Most tools are clearly distinct: booking lifecycle (book, cancel, reschedule, availability), services, scenarios, and meta tools each target different actions. The widget/non-widget pairs (book_consult vs booking_widget, get_services vs services_widget) and list_availability vs booking_widget could cause confusion, but the descriptions explicitly state which to prefer and when.

Naming Consistency3/5

Most tools follow verb_noun (book_consult, cancel_booking, reschedule_booking, get_services, list_availability, advise_scenarios), but four break the pattern with noun_noun or gerund forms (booking_widget, services_widget, directory_census, demo_walkthrough). The mix is readable but inconsistent, especially the widget pairings that differ from their non-widget counterparts.

Tool Count5/5

Ten tools is well-scoped for a consultation and advisory service server. Each tool earns its place: full booking lifecycle, services catalog, scenario playbooks, and reviewer-facing meta tools. No redundant or filler tools.

Completeness4/5

The booking lifecycle is fully covered (list, book, cancel, reschedule) plus interactive widgets, and services/scenario discovery is solid. The only notable gap is that cancel/reschedule require the email confirmation reference — there is no 'list my bookings' tool to look up bookings by email. The demo/census tools are meta but deliberately scoped.

Resources