Skip to main content
Glama

standup

Update task

task_update

Change a task by id: only the fields you pass are touched. tags REPLACES the whole list, due 'none' clears it, and project moves the task to a board that already exists. Returns the task's new row.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesTask id, e.g. NOVA-12
dueNoNew due date, or 'none' to clear it
tagsNoReplaces the whole tag list
notesNo
titleNo
columnNo
projectNoMove the task to another existing project board
priorityNo
estimate_minutesNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.6/5.0
Behavior5/5

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

Beyond the sparse annotations (all hints false), the description reveals partial-update behavior, the whole-list replacement semantics of tags, the clearing sentinel for due, and the existing-board prerequisite for project. It also promises a return value (the new row), which is valuable since there is no output schema.

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?

Three short sentences front-load the core behavior, then cover special cases and the return value. There is no filler and no redundant restating of schema details.

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?

For a 9-parameter state-changing tool with no output schema, it covers the primary use case, partial update semantics, key special values, a prerequisite, and the return value. It doesn't enumerate error cases or clearing semantics for other text fields, but those are minor gaps.

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?

Schema description coverage is only 44%, but the description compensates with the global rule 'only the fields you pass are touched' plus specific behaviors for tags, due, and project. Remaining parameters like notes, title, column, priority, and estimate_minutes rely on their names and schema types, so the compensation is good but not exhaustive.

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 opening clause 'Change a task by id' names the operation and target resource precisely, and 'only the fields you pass are touched' defines the update scope. The listed semantics for tags, due, and project make it easy to distinguish from sibling operations like task_add, task_delete, task_done, and task_move.

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 gives concrete invocation guidance: pass only fields to change, use 'none' to clear due, and use an existing board for project. It doesn't explicitly name alternatives or state when not to use this tool, but the context is clear and actionable.

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.