Skip to main content
Glama

Timeplex K-Beauty Booking

request_booking

Use this tool only for a shop that is already in the Timeplex catalog but cannot be booked online yet: a search_shops result with bookable=false, or a newly joined shop whose menu is not registered yet (get_shop_services says so). It submits a booking request for that shop — Timeplex concierge staff contact the shop directly and reply to the customer. Share the returned link with the user. Do not use this tool for a shop name that search_shops could not find (shop_name_not_found), and not for generic searches with no matching results — in both cases tell the user it is not on Timeplex instead. For bookable shops use get_shop_services -> search_availability -> start_booking instead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
langNoCustomer language (optional)
venue_nameYesName of the shop the customer wants to book

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
recordedYestrue — the demand was logged
link_labelNo
instructionNo
link_markdownNoPut this into the reply as-is (never expose the raw URL)
next_step_urlYesConcierge chat where the customer completes the request

TDQS

A4.7/5.0
Behavior5/5

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

Annotations are all false (not read-only, not idempotent, not destructive), so the description carries the full burden. It discloses that the request goes to concierge staff who contact the shop directly, that it is asynchronous, and that the returned link should be shared with the user. This is valuable context beyond the schema and hints. No contradiction.

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 front-loaded with the primary purpose and condition, then proceeds through the workflow, the action (share the link), and the exclusions. Every sentence contributes: no filler, no repetition. It's long but efficiently organized—exactly what an agent needs.

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?

An output schema exists (has output schema: true), so exhaustive return-value detail isn't required. The description covers the essential outcomes (e.g., the returned link) and error scenarios (shop_name_not_found). For a two-parameter tool with clear usage, nothing needed for correct invocation is missing.

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 coverage is 100%, and both parameters already have descriptive self-documentation (e.g., 'Name of the shop the customer wants to book'). The description adds no parameter-specific details beyond what the schema provides, so the baseline of 3 applies. It does clarify that venue_name refers to a non-bookable shop, but that is usage context, not parameter semantics.

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 states a specific verb ('submits a booking request') and a clear resource (a shop that is in the Timeplex catalog but cannot be booked online). It contrasts directly with siblings like start_booking and search_shops, leaving no ambiguity about which tool to pick for non-bookable shops.

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?

Explicit when-to-use (bookable=false or newly joined shop without registered menu) and when-not-to-use (shop_name_not_found or generic no-match). It even names the alternative workflow for bookable shops (get_shop_services -> search_availability -> start_booking). This is the gold standard for routing an agent.

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

Each tool targets a distinct step in the booking workflow: searching shops, retrieving services, checking availability, initiating a booking, and handling manual requests for non-bookable shops. Their purposes and usage conditions are clearly separated with specific guidance on when to use each, eliminating ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case: get_shop_services, request_booking, search_availability, search_shops, start_booking. The verbs (get, request, search, start) and nouns (shop_services, booking, availability, shops) are all lowercase and underscore-separated, providing a predictable and readable naming scheme.

Tool Count5/5

With exactly 5 tools, the server is well-scoped for its purpose. It covers the essential phases of finding a shop, inspecting services, checking availability, and initiating bookings, without unnecessary expansion. This count is typical for a focused domain-specific MCP and each tool earns its place.

Completeness4/5

The tool set covers the primary booking flow comprehensively: search_shops, get_shop_services, search_availability, and start_booking handle the standard online-booking path, while request_booking covers shops that require manual concierge intervention. Minor gaps exist (e.g., no tool for canceling or modifying bookings), but since start_booking only generates a booking link and actual reservation management happens on the booking page, the surface is reasonably complete for its stated purpose.

Resources