Skip to main content
Glama

Update a card

update_card
Idempotent

Change a card title, description, due date or colour. Pass null to clear a field. Use move_card to change column.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
colorNoCard colour as #rrggbb, or null.
titleNo
card_idYesCard id from list_cards.
board_idYesThe board UUID, or the board URL the user shared. Never invent one.
due_dateNoDue day as YYYY-MM-DD, or null.
passwordNoThe board password, if the board is protected.
descriptionNo

TDQS

A4.6/5.0
Behavior4/5

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

Annotations already indicate that this is a safe, idempotent write operation. The description adds value beyond annotations by disclosing the 'null clears a field' behavior and explicitly stating that column moves are not handled by this tool, which are important behavioral nuances not captured by the annotations.

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 three short sentences, each earning its place: the first states the purpose, the second gives a critical usage note, and the third directs to an alternative for a distinct use case. There is no fluff or redundancy.

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?

Given the absence of an output schema, the description might need to hint at return values, but for a card update tool, the behavior is straightforward. It covers the main operation, the null-clear behavior, and the column limitation. The required board_id and card_id are documented in the schema, so the description is sufficiently complete for selection and basic invocation.

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

Parameters4/5

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

With 71% schema description coverage, the schema already documents most parameters. The description adds meaning by enumerating the fields that can be changed ('title, description, due date or colour') and by explaining the null convention, which helps agents understand the parameter semantics beyond the raw schema. It also implicitly indicates that column is not a parameter.

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 changes a card's title, description, due date, or colour, with a specific verb and resource. It also distinguishes itself from the sibling tool move_card by explicitly noting that column changes should use move_card instead.

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?

The description provides explicit usage guidance: 'Pass null to clear a field' and 'Use move_card to change column.' This gives a clear when-to-use and a when-not-to-use (column changes) with a named alternative, making it easy for an agent to decide between update_card and move_card.

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

Each tool has a clear, distinct purpose: board-level operations (create_board, get_board) vs card-level operations (create, delete, list, move, update) vs column listing. No two tools appear to do the same thing.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (create_board, delete_card, move_card, etc.), making the API predictable and easy to navigate.

Tool Count5/5

8 tools is well-scoped for a Kanban board server, covering board creation/retrieval and card lifecycle operations without unnecessary bloat or missing essentials.

Completeness4/5

Core workflows are covered: create/read boards, list columns, and full CRUD for cards plus moving. Minor gaps include no delete_board (boards expire automatically) and no single-card retrieval endpoint, but list_cards can work around this.