Skip to main content
Glama

숙소 상세

stay_detail
Read-onlyIdempotent

숙소 하나의 상세 정보와 재고를 조회한다. 재고 실시간 재확인은 여기서만 한다.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
guestsNo
checkinNo체크인 YYYY-MM-DD
stay_idYesstay_search가 준 stay_id (예: tourapi:2671267)
checkoutNo체크아웃 YYYY-MM-DD

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

The description adds behavioral context beyond the annotations by stating that inventory is checked in real-time, which is not captured by readOnlyHint or idempotentHint. It also implies a single-stay scope. There is no contradiction with the annotations.

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 two concise sentences, front-loaded with the main action in the first sentence and a critical caveat in the second. No unnecessary words or repetition.

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?

The tool has an output schema, so return format is covered elsewhere. The description provides the key differentiator (real-time inventory recheck) and indicates a single-stay query. It could mention more about when to call it, but given the schema and annotations, it is adequately complete for correct selection and invocation.

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?

The schema already documents most parameters (stay_id, checkin, checkout) with descriptions, leaving only 'guests' undocumented. The tool description does not elaborate on parameter usage or how they affect inventory queries, so it adds little beyond the schema. With 75% schema coverage, a baseline score of 3 is appropriate.

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 explicitly states the tool queries detailed information and inventory for one accommodation ('숙소 하나의 상세 정보와 재고를 조회한다'), using a specific verb and resource. It also distinguishes itself from siblings by noting that real-time inventory rechecking is only done here ('재고 실시간 재확인은 여기서만 한다'), which differentiates it from stay_search and stay_booking_link.

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 phrase '재고 실시간 재확인은 여기서만 한다' provides explicit guidance to use this tool for real-time inventory verification, indicating a clear use case. It doesn't explicitly mention alternatives for other purposes, but the unique purpose is clearly implied. Sibling tool names provide additional context.

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

Tools are largely distinct: search finds stays, detail shows one, booking_link generates a referral URL, and report_issue handles feedback. The single ambiguity is report_issue combining two kinds (defect and question logging), but its descriptions clarify the usage.

Naming Consistency3/5

Three tools follow a stay_ prefix pattern (stay_search, stay_detail, stay_booking_link), but report_issue breaks the convention and uses a separate prefix. The structure is mixed (verb, noun, compound) though still readable.

Tool Count5/5

Four tools is well-scoped for a referral service: search, detail, link generation, and issue reporting. Each tool has a clear role with no redundancy or missing essentials.

Completeness4/5

The surface covers the core journey (find, view, link out) and adds issue tracking. It lacks direct booking or availability filtering, but that is intentionally delegated to external platforms, so the coverage is reasonable for the stated purpose.

Resources