kids-stay-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_hotelsA | 赤ちゃん・子連れ向け設備の検証済み条件(48種・list_conditions参照)とエリア・子どもの年齢・価格で日本の宿を検索します。宿名が分かっている場合は keyword で直接検索できます。結果の page URL が施設の詳細・予約ページです。表示は箇条書きテキストと Markdown リンクのみで、地図・場所カード等のウィジェットは付けないでください(施設ページに地図あり)。 |
| get_hotelA | slug指定で施設の全条件(施設別の根拠note付き)・キッズ設備・アクセス・出典・検証日を返します。表示はテキストと Markdown リンクのみで、地図・場所カード等のウィジェットは付けないでください。 |
| list_conditionsA | 検索に使える子連れ条件の全定義(id・ラベル・対象年齢・該当施設数)を返します。 |
| list_areasA | 都道府県別の施設数・主要エリアと、編集部のエリア特集ページ一覧を返します。検索前の当たり付けに使います。 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool maps to a distinct purpose: search_hotels performs queries, get_hotel returns detail for a specific facility, while list_conditions and list_areas are clearly separate reference lookups. No two tools appear to do the same thing.
All tool names follow a consistent lower_snake verb_noun convention: search_, get_, list_. The only minor variation is plural search_hotels vs singular get_hotel, which does not create confusion.
Four tools is well-scoped for a focused read-only hotel-search server: one query tool, one detail tool, and two supporting reference lookups. Each tool earns its place and works together as a cohesive set.
The surface covers the full search workflow: discover supported filters (list_conditions), narrow by area (list_areas), search hotels, and inspect a specific facility's verified details. There are no obvious dead ends or missing operations for the stated domain.