Skip to main content
Glama

check_availability

List available cleaning slots. Saturdays and Sundays only, 8 AM – 6 PM PT, San Francisco only. Omit date for the next 8 upcoming weekend days.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNoOptional YYYY-MM-DD date (must be Saturday or Sunday).

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries full behavioral disclosure. It reveals important traits: weekends-only availability, specific time window, geographic limitation, and the behavior when omitting `date` (returns next 8 weekend days). This goes beyond the schema and gives the agent actionable expectations.

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 concise sentences, front-loaded with the purpose, followed by constraints, and ending with parameter usage. Every sentence contributes necessary information with no redundancy or fluff.

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 simple tool with one optional parameter, no output schema, and no annotations, the description covers purpose, operational constraints, and parameter behavior well. It does not describe the structural details of the returned slots, but the core usage is fully addressed, making it complete enough for straightforward 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?

The schema already covers the `date` parameter with 100% description coverage. The description adds the critical behavior that omitting the parameter returns the next 8 upcoming weekend days, which is not in the schema. This extra semantic guidance elevates the parameter understanding above the baseline.

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 opens with 'List available cleaning slots,' a specific verb+resource pair that clearly states the tool's function. It distinguishes itself from sibling tools (check_booking_status, initiate_booking) by focusing on availability, and the additional details (weekends, time, location) further sharpen its purpose.

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 provides clear operational constraints: 'Saturdays and Sundays only, 8 AM – 6 PM PT, San Francisco only.' It also gives a concrete usage instruction: 'Omit `date` for the next 8 upcoming weekend days.' While it doesn't explicitly mention alternatives or when not to use it, the context strongly implies its role among siblings.

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
Disambiguation5/5

Each tool has a clearly distinct purpose: checking availability, checking booking status, and initiating a booking. There is no overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (check_availability, check_booking_status, initiate_booking), making them predictable and readable.

Tool Count4/5

With 3 tools, the set is on the lower end but appropriate for the narrow domain of booking cleaning slots. Each tool serves an essential function without unnecessary bloat.

Completeness3/5

The surface covers create (initiate_booking), read (check_booking_status), and availability (check_availability), but lacks cancellation or rescheduling capabilities, which are common needs for booking services.