Skip to main content
Glama
kenzotp

mcp-server-zuuna

zuuna_update_card

Update a Zuuna card's title, description, or priority by card key or ID. Only provided fields are changed, and priority can be cleared with null.

Instructions

Edit a card: title, description and/or priority (HIGHEST|HIGH|NORMAL|LOW|LOWEST, or null to clear). Only the fields you send change. Accepts a card key (ZNA-2001) or id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cardYesCard key (e.g. ZNA-2001) or card id.
titleNoNew title.
priorityNoNew priority, or null to clear.
descriptionNoNew description. null clears it.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

A3.6/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the full burden of behavioral disclosure. It states that only sent fields change, which is a partial-update behavior, but it does not disclose what happens on success (return value, confirmation), error conditions (card not found, invalid key), or any side effects. For a mutation tool, this is a significant gap.

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?

The description is two sentences, concise and front-loaded with the purpose. Every word earns its place, and it avoids redundancy.

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?

For a mutation tool with no output schema and no annotations, the description should explain the return behavior or success/failure semantics. It doesn't clarify what the tool returns (if anything) or what happens if the card doesn't exist. The description is too sparse to be fully complete for an agent to invoke it correctly.

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 the schema already documents all parameters (card, title, priority, description) including the enum and null behavior. The description adds minimal new meaning, essentially restating what the schema provides. Baseline 3 is appropriate because the schema does the heavy lifting.

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 function: 'Edit a card: title, description and/or priority'. It names the specific resource (card) and the fields it can modify, distinguishing it from siblings like zuuna_create_card and zuuna_move_card. The verb 'Edit' is precise and unambiguous.

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

Usage Guidelines4/5

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

The description provides clear context for when to use the tool: editing existing cards, with the note 'Only the fields you send change' indicating partial updates. While it doesn't explicitly mention alternatives or when not to use it, the sibling names make the distinction obvious. It lacks explicit exclusions but is still reasonably clear.

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