Skip to main content
Glama

숙소 검색

stay_search
Read-onlyIdempotent

조건에 맞는 국내 숙소를 찾는다.

**재고를 확인하지 못한 숙소를 결과에서 지우지 않는다.** availability가 unknown이면
빈방 여부를 모른다는 뜻이고, 만실이라는 뜻이 아니다. 사용자에게 그렇게 전달하라.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo반환 개수 (최대 50)
guestsNo인원
regionNo지역. '강원 속초', '서울 마포구'처럼 시도+시군구. 정식명·구명·약칭 다 받는다('제주도'='제주'='제주특별자치도'). 행정구역 어휘와 대조해 걸고, 어휘에 없는 말(읍·면·동·도로명)은 주소 부분문자열로 내려간다 — 어느 쪽이었는지는 meta.region_matched_on에 적힌다. 0건이면 다시 걸 이름이 meta.region_retry로 온다(0건 = '없다'가 아니다). **로마자는 시도만 받는다**('Seoul'·'Jeju-do'는 통하고 'Gangnam'은 안 통한다) — 시군구 이하는 한글로 써라
checkinNo체크인 YYYY-MM-DD. 주면 재고 조회를 시도한다 — 지난 날짜면 재고는 조회하지 않는다(목록은 그대로 나온다)
categoryNo숙소 종류
checkoutNo체크아웃 YYYY-MM-DD

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4/5.0
Behavior5/5

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

The description discloses a genuinely non-obvious behavior: '재고를 확인하지 못한 숙소를 결과에서 지우지 않는다' (does not remove unconfirmed-inventory results), then defines the semantic of availability=unknown and instructs the agent to communicate it to the user. This adds substantial value beyond the annotations (readOnly/openWorld/idempotent) and is fully consistent with them — 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?

Two sentences with zero waste: a one-line purpose statement followed by a bolded critical caveat. The most important behavioral warning is front-loaded and visually emphasized, and every sentence earns its place.

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 description covers the one behavioral caveat an agent must know to handle results correctly, while the schema carries all parameter semantics and the annotations cover the safety profile — so nothing critical is missing for invoking the tool. The only gap is explicit routing guidance among the four stay-related sibling tools.

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 the baseline is 3. The description itself mentions no parameters; all parameter meaning (region matching rules, romanization limits, checkin date behavior, category enum) lives in the schema. The description adds no parameter semantics beyond what the schema already provides.

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 opens with '조건에 맞는 국내 숙소를 찾는다' — a specific verb (찾는다/finds), resource (국내 숙소/domestic accommodations), and scope (조건에 맞는/matching conditions). This clearly separates it from report_issue and stay_booking_link, though it does not explicitly name stay_detail or draw a boundary against it.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The bolded directive — keep unknown-inventory results and tell the user 'unknown ≠ fully booked' — implies when and how to use the tool's results. However, the description never states when to choose stay_search over stay_detail or stay_booking_link, and offers no exclusions or alternative routing.

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