Skip to main content
Glama
midnight480

saga-event-space-mcp-server

by midnight480

search_places

Filter event spaces, hotels, and party venues in Saga Prefecture by keyword, type, amenities, price, and capacity to find the right venue for your event.

Instructions

佐賀県内のイベントスペース・ホテル・懇親会会場を検索します。キーワード、カテゴリ、設備条件、料金、収容人数などで絞り込みが可能です。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
qNo検索キーワード(名前・説明文から部分一致)
cityNo市町名(例: 佐賀市, 唐津市)
pageNoページ番号(デフォルト: 1)
sortNoソート項目(デフォルト: updated_at)
typeNo会場種別(facility: イベント施設, hotel: ホテル, venue: 懇親会会場)
limitNo1ページあたりの件数(デフォルト: 20, 最大: 100)
orderNoソート順(デフォルト: desc)
amenitiesNo必要な設備(カンマ区切り。例: wifi,projector,parking)
price_maxNo最高料金(円)
price_minNo最低料金(円)
capacity_maxNo最大収容人数
capacity_minNo最小収容人数
smart_centerNoスマートセンター共催可否

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

A3.7/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full behavioral burden. It discloses the search scope and filterable dimensions, and '検索します' implies a read-only, list-returning operation, but it does not mention pagination behavior, default ordering, or the shape of returned records. This is adequate for a search tool, though thin on result semantics.

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?

A single sentence that front-loads the core function (search venues in Saga) before the filtering capabilities. There is no filler, no repetition of schema content, and no redundant phrasing — every clause earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 13-parameter tool, the input side is fully covered by the description plus the 100%-coverage schema. However, with no output schema and no annotations, the description leaves return shape and result semantics unspecified, and it gives no guidance on how results relate to get_place_detail. It is adequate but has clear gaps.

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 every one of the 13 parameters is already described in the schema, making the baseline of 3 appropriate. The description adds modest value by grouping parameters into semantic categories (keyword, category, facilities, price, capacity) that help an agent map natural-language requests to parameter groups, but it contributes no per-parameter detail beyond the schema.

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 names a specific verb and resource: '検索します' (searches) for event spaces, hotels, and social gathering venues within Saga Prefecture. It also enumerates the filter dimensions (keyword, category, facilities, price, capacity), which cleanly separates this list/search tool from siblings like get_place_detail (single-record lookup) and create/update/delete_place (mutations).

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 description implies when to use the tool — when an agent needs to find Saga venues matching keyword, category, facility, price, or capacity criteria — but never states it explicitly. It provides no exclusions and does not name alternatives (e.g., 'for a single place's full details use get_place_detail'), leaving routing entirely to inference from sibling names.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.