Skip to main content
Glama

star365 HQ

booking_availability

booking_availability
Read-onlyIdempotent

List bookable time slots (action=booking.availability). Read-only. service (service id) is required — get it from booking_menu first. If date is omitted it means today in the shop timezone. Pass the returned starts_at and staff_id to booking_reserve exactly as given; invented times are rejected. / 반환된 slots 의 값을 그대로 booking_reserve 에 넘기십시오. 임의 시각은 거부됩니다.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNoYYYY-MM-DD. Omitted means today in the shop timezone. / YYYY-MM-DD (생략 시 매장 기준 오늘)
slugYesShop identifier (slug). / 매장 식별자(slug)
staffNoStaff id (optional). Omitted means every available staff member. / 담당자 id(선택)
serviceYesService id, from services[].id in booking_menu. / 서비스 id (booking_menu 의 services[].id)
agent_idNoCalling agent id, for the audit trail. / 호출 에이전트 식별자(감사 추적용)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint and destructiveHint=false, so the safety profile is covered. The description adds real value beyond that: it discloses the date-omission default (today in shop timezone) and the critical constraint that only returned starts_at/staff_id values may be passed to booking_reserve (invented times rejected).

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

Conciseness3/5

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

The front-loaded English portion is tight and well ordered, but the entire message is restated in Korean, which doubles the length for an agent that reads a single language. The redundancy keeps this from being maximally concise.

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?

No output schema exists, but the description partially compensates by noting the returned fields (starts_at, staff_id) that must be forwarded. Combined with the required-parameter rule and date default, an agent has enough to call and chain the tool 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?

Schema description coverage is 100%, so all five parameters are already documented, including the date default and service sourcing. The description largely restates this (service required, date default) rather than adding new syntax or constraints, so it sits at 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?

States a specific verb and resource ('List bookable time slots') and even names the underlying action (action=booking.availability). It is clearly distinguishable from booking_menu (source of service id) and booking_reserve (consumer of the output).

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?

Gives an explicit workflow: obtain 'service' from booking_menu first, then call this tool, then pass the results to booking_reserve. Both the prerequisite and the downstream consumer are named, so the agent knows exactly where this fits.

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.

Resources