Skip to main content
Glama
satviksriv

bookings-mcp

by satviksriv

List bookings

list_bookings
Read-only

Retrieve bookings within a date range, including customer, phone, service, staff, and status. Use for day schedules and follow-up lists.

Instructions

Bookings between two dates (inclusive), with customer, phone, service, staff and status. Use for day schedules and follow-up lists. Max 500 rows.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toYesDate as YYYY-MM-DD
fromYesDate as YYYY-MM-DD
statusNo
staff_idNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description adds meaningful behavior beyond that: the date range is inclusive and results are capped at 'Max 500 rows.' This gives agents important expectations about output limits not present in the annotations or schema.

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?

Three short sentences, each earning its place: what is returned, when to use it, and the row cap. The core behavior is front-loaded and there is no filler or repetition of schema content.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only listing tool with no output schema, the description adequately conveys the returned fields, date-range behavior, and row cap. It could mention ordering or pagination, but the information provided is sufficient for correct invocation in most cases.

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 50%, covering the two date parameters; the description adds inclusive-date semantics on top of that. However, status and staff_id are only hinted at through the response field list ('...and status') and are not explicitly explained as filter parameters, so the description only partially compensates for the schema gap.

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 ('List') with a clear resource ('bookings') and a precise scope ('between two dates, inclusive'), plus the fields returned. This clearly differentiates it from sibling tools like create_booking, cancel_booking, and revenue_report without needing to open the schema.

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 explicitly states a use case: 'Use for day schedules and follow-up lists.' It gives clear context for when to choose this tool, though it does not mention exclusions or name alternative tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.