Skip to main content
Glama

エキテン ネット予約

search_shops

エキテンのネット予約に対応した店舗を検索する。店舗名・住所・大ジャンル・小ジャンルに加え、日時・人数の大まかな条件で絞り込み可能。取得した shopId を予約在庫状況取得・予約登録ツール(get_availability)で使用する。keyword / address / prefecture / city / prefectureCode / cityCode / largeGenreId / smallGenreId のいずれか1つ以上を必ず指定すること。日時・人数条件は任意。メニュー・スタッフ・禁煙喫煙等の詳細条件は search_shops では絞り込めないため、候補店舗ごとに予約在庫状況取得・予約登録ツール(get_availability)を使用すること。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityNo市区町村名。市区町村名で絞り込み。省略可。(例: 渋谷区)
pageNoページ数。1始まり。省略時は1
addressNo住所。住所をフリーワードで絞り込み(都道府県名・市区町村名・町名等)。省略可
keywordNo店舗名。店舗名または店舗名のキーワードで検索(部分一致)。省略可
perPageNo1ページあたりの取得件数(最大20)。省略時は10
cityCodeNo市区町村JISコード。市区町村JISコードで絞り込み。city・prefectureより優先。prefectureCode より優先。省略可。(例: "13113"=渋谷区)
headcountNo予約人数。指定した場合、その人数を受け入れ可能な店舗のみに絞り込む。グルメ予約(tableUnit)の店舗のみ判定対象。グルメ予約以外(timeUnit)の店舗は人数条件を無視して結果に含める。省略可
prefectureNo都道府県名。都道府県名で絞り込み。省略可。(例: 東京都)
largeGenreIdNo大ジャンルID。大ジャンルIDで絞り込み。省略可
smallGenreIdNo小ジャンルID。小ジャンルIDで絞り込み。省略可 largeGenreId と組み合わせて使用、親子関係が不一致の場合はsmallGenreIdを優先
prefectureCodeNo都道府県JISコード。都道府県JISコードで絞り込み。prefecture より優先。省略可。(例: "13"=東京都)
reservationDateNo予約日(YYYY-MM-DD形式)。指定した場合、その日に予約枠(即予約またはリクエスト予約)がある店舗のみに絞り込む。省略可
reservationTimeNo予約時間(HH:MM形式)。reservationDateとの同時指定が必須(単独指定はエラー)。指定した場合、その日時に予約枠がある店舗のみに絞り込む。省略時はreservationDate当日のいずれかの時間に空きがあれば対象とする

Schema Changelog

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

  1. First observed

TDQS

A4.8/5.0
Behavior5/5

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

The description discloses detailed behavior: reservation date/time filters narrow results to shops with available slots, headcount filtering applies only to tableUnit shops and is ignored for timeUnit shops, and parameter precedence rules (e.g., cityCode over prefecture, smallGenreId over mismatched largeGenreId) are stated. It also warns that reservationTime alone is an error, making the tool's runtime behavior transparent.

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

Conciseness4/5

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

The description is dense but not wasteful; each sentence adds necessary detail about parameter semantics or tool behavior. Some repetition (e.g., '省略可' appearing many times) is present, but it serves to keep individual parameter notes self-contained. Overall it is appropriately sized given the 13 parameters and their rules.

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 all input parameters and their behavioral effects, but it lacks an explicit output schema or description of the response structure beyond mentioning shopId. Given that no output schema is provided, the agent would have to infer other returned fields, though the primary use (feeding shopId to get_availability) is clear.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

All 13 parameters have descriptive comments covering format examples (e.g., cityCode "13113" for Shibuya), default values, maximum constraints (perPage=20), and inter-parameter relationships such as required pairing of reservationTime with reservationDate. This goes well beyond the schema basics and fully clarifies each parameter's meaning.

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 clearly states the tool's purpose: to search for shops on Ekiten that support online reservations, accepting multiple filters. It also explicitly ties the returned shopId to the get_availability tool, distinguishing it from sibling tools like reservation creation or cancellation.

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?

It provides explicit guidance on when to use the tool, including the requirement that at least one of the listed filter parameters must be specified. It also explains that detailed conditions (menu, staff, smoking) cannot be filtered here and directs users to use get_availability for those, offering clear usage direction.

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

Each tool has a unique, clearly defined purpose: login, logout, search, genres, availability, create, and cancel. No two tools overlap in functionality, making selection straightforward.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern in snake_case (e.g., search_shops, get_availability, create_reservation). This predictable naming makes the API easy to navigate.

Tool Count5/5

Seven tools neatly cover the necessary operations for an online reservation system without redundancy or bloat. The scope is appropriately focused on the core workflow.

Completeness4/5

The toolkit covers the essential reservation lifecycle: login, search, availability check, create, cancel, and logout. While an update/modify reservation tool is absent, it is not a typical requirement for this type of system, so the coverage is nearly complete.

Resources