Skip to main content
Glama

get_booking_status

Use when the user already has a TaskMan booking request and wants an update.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailNo
phoneNo
booking_request_idYes

TDQS

B3/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only states the tool provides an update, without mentioning whether it is read-only, how it handles missing or invalid booking_request_id, or what the response format is. The presence of optional email and phone parameters suggests possible verification, but this is not explained.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence that front-loads the usage condition. Every word contributes to the core idea, but it could be more precise by stating the action (e.g., 'Retrieves the status of a TaskMan booking request') rather than only framing it as a use case.

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

Completeness2/5

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

For a tool with no output schema and no annotations, the description is incomplete. It does not explain what 'update' entails (e.g., possible status values) or how the optional email and phone parameters are used in the lookup. The tool is simple, but the description leaves too many gaps for the agent to call it correctly with confidence.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description provides no information about the three parameters. With schema description coverage at 0%, the description fails to explain the purpose of email and phone, which are optional, or clarify that booking_request_id is the primary identifier. This leaves the agent without meaningful guidance beyond the raw schema.

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 states the tool provides an update on an existing TaskMan booking request, distinguishing it from siblings like get_booking_payment_status. However, it frames the purpose as a usage trigger rather than an explicit action, leaving the exact nature of the 'update' (status retrieval) implicit.

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?

It explicitly says 'Use when the user already has a TaskMan booking request and wants an update,' giving a clear condition for when to invoke it. It implies not to use for creating or availability checks, but it does not mention specific alternatives like get_booking_payment_status as exclusions.

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

B3.3/5.0
Disambiguation3/5

Some tools overlap in purpose, such as check_availability vs get_customer_availability and the various verification entry points. Descriptions clarify the context of each, but an agent could still misselect without careful reading.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with snake_case, e.g., check_availability, create_booking_request, get_booking_status. This makes the naming predictable and easy to navigate.

Tool Count3/5

With 20 tools, the server is on the heavier side but the scope is broad, covering booking, customer verification, payments, and provider matching. The count feels slightly high but each tool serves a distinct step in the workflow.

Completeness4/5

The tool surface covers the full booking lifecycle from availability and quote to payment and final creation. Notable gaps include lack of update or cancel booking operations, but the core flow is well covered.

Resources