Skip to main content
Glama
midnight480

saga-event-space-mcp-server

by midnight480

update_announcement

Update existing announcements by modifying their title, message, level, schedule, or published status. Correct or refresh previously posted information.

Instructions

既存のお知らせを更新します。APIトークンが必要です。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes更新するお知らせのID
levelNoお知らせレベル
titleNoお知らせタイトル
ends_atNo公開終了日時(ISO 8601形式)
link_urlNo関連リンクURL(http/httpsのみ)
is_activeNo公開状態
starts_atNo公開開始日時(ISO 8601形式)
message_jaNoお知らせ本文(日本語)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are present, so the description carries the full disclosure burden. It reveals that an API token is required but does not clarify whether this is a partial or full update, what validation occurs, whether changes are reversible, or what side effects the operation has.

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 concise with two short sentences and no filler. It front-loads the core purpose and then adds the authentication requirement, though it could contain more behavioral detail without becoming bloated.

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?

The schema documents all parameters, but there are no annotations and no output schema. The description does not clarify update semantics such as partial updates or success/failure behavior, leaving meaningful gaps for an 8-parameter mutation tool.

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?

The input schema covers 100% of the 8 parameters with individual descriptions, so the baseline is 3. The description adds no parameter-specific meaning beyond what the schema already provides.

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 states '既存のお知らせを更新します' (updates existing announcements), which is a specific verb plus resource. The word '既存' clearly distinguishes this update operation from create, delete, and list sibling tools.

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 provided is that an API token is required. There is no explicit statement of when to use this tool versus create_announcement, delete_announcement, or other related tools, and no mention of prerequisites beyond the token.

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