Skip to main content
Glama
midnight480

saga-event-space-mcp-server

by midnight480

update_place

Update existing event venue details including name, status, capacity, pricing, contact information, and descriptions. Requires an API token for authentication.

Instructions

既存の会場情報を更新します。APIトークンが必要です。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes更新する会場のID(UUID形式)
statusNoステータス
name_enNo会場名(英語)
name_jaNo会場名(日本語)
categoryNo会場種別
price_maxNo最高料金(円)
price_minNo最低料金(円)
address_rawNo住所
capacity_maxNo最大収容人数
capacity_minNo最小収容人数
contact_emailNo連絡先メールアドレス
contact_phoneNo連絡先電話番号
description_enNo説明(英語)
description_jaNo説明(日本語)
contact_websiteNo連絡先ウェブサイトURL

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

C2.8/5.0
Behavior2/5

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

No annotations exist, so the description carries the full behavioral burden. It discloses only the API-token requirement; it never states whether the update is partial (unchanged fields preserved) or full replacement, what happens when the id does not exist or a status transition is invalid, or whether changes are reversible. The mutation fact is already evident from the tool name, leaving the description with little added behavioral value.

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

Conciseness3/5

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

The description is two short sentences with zero filler, and the token-requirement note is useful and earns its place. However, for a 15-parameter mutation tool this is under-specification rather than appropriately concise — a clarifying sentence about partial-update semantics or required permissions would materially improve it without bloating it.

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

Completeness2/5

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

Complexity is high: 15 parameters, a mutation operation, no annotations, and no output schema. The description omits update semantics, expected return value, error behavior, and any differentiation from bulk_update_status. An agent could invoke the tool with valid parameters but would not know what side effects to expect or how to interpret the result.

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 all 15 parameters are already documented in the input schema with types, enums, and Japanese descriptions. The description adds no parameter-level guidance beyond what the schema provides, so the baseline of 3 for high-coverage schemas applies.

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 states a clear verb+resource pair: '既存の会場情報を更新します' (updates existing place info). The qualifier '既存の' (existing) implicitly distinguishes it from create_place, and the update verb separates it from delete_place. However, it does not address the sibling bulk_update_status, which also mutates place data, so the differentiation is incomplete.

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

Usage Guidelines2/5

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

The only guidance is 'APIトークンが必要です' (API token required), which is a prerequisite rather than usage context. There is no statement about when to prefer this tool over create_place, delete_place, bulk_update_status, or search_places, and no exclusionary conditions or workflow hints are provided.

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