Skip to main content
Glama

List my appointments

list_my_service_bookings
Read-onlyIdempotent

Use immediately when the user asks to see or manage their appointments. For a reschedule or cancellation request, pass status='active' and never select a cancelled appointment. If more than one active appointment is returned, show the choices instead of guessing. The platform handles Connect when needed; never ask for a phone or code in chat.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
statusNoUse 'active' for reschedule or cancellation requests; otherwise omit to include appointment history.

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?

Annotations already declare readOnly, idempotent, and non-destructive behavior. The description adds valuable behavioral context beyond that: the tool may return multiple active appointments requiring user choice, cancelled appointments must be avoided, and account-linking via Connect is handled outside the chat. It does not describe ordering or pagination, but the output schema covers the return shape.

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 compact and front-loaded: it opens with the immediate usage trigger, then covers status behavior, disambiguation, and auth-related handling in a few tightly packed sentences. Every sentence carries meaningful guidance with no filler.

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 simple list tool with two optional parameters, an output schema, and strong annotations, the description covers the key operational concerns: when to call, status handling, multi-result disambiguation, and auth-related chat behavior. No critical information appears to be missing for an agent to invoke it correctly.

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 schema describes 50% of parameters (status), and the description reinforces the status parameter with the exact value 'active' and its purpose. The limit parameter is left undocumented in both the schema and description, though its name and type make it partially self-explanatory. This is adequate but not outstanding.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly conveys that the tool lists the user's appointments and is the entry point for seeing or managing them. It is unambiguous about the resource, but it does not explicitly differentiate itself from get_my_service_booking, leaving the agent to infer the list-vs-single distinction from the tool name.

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 gives explicit, actionable usage guidance: use it immediately for appointment-related requests, pass status='active' for reschedule/cancellation, never select a cancelled appointment, and present choices when multiple active appointments are returned. It also provides important chat-level guardrails about Connect and not asking for phone/code.

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 map to distinct lifecycle stages: request intake, option selection, booking creation, and booking management. The main potential confusion is between get_service_options and select_service_option, and between prepare_service_booking_change versus the actual cancel/reschedule tools, but per-tool guidance makes the boundaries clear enough for an agent.

Naming Consistency5/5

All tool names follow a snake_case verb_noun pattern such as start_service_request, update_service_request, get_service_options, and reschedule_service_booking. Minor variations like get_my_service_bookings and prepare_service_booking_change are still natural and predictable.

Tool Count5/5

Twelve tools is well-scoped for a booking and appointment-management domain. Each tool serves a necessary step in the flow: starting a request, updating intake, selecting options, creating bookings, listing/getting bookings, and handling changes.

Completeness4/5

The lifecycle is largely complete: request creation and updates, option selection, booking creation, read/list, reschedule, and cancelation. Obvious gaps are minor, such as no explicit tool to abandon a service request or retrieve a single service request alone, but the core user journey has no dead ends.

Resources