Skip to main content
Glama

update_task

Update an existing task by changing its title, due date, status, priority, assignees, or custom fields. Get custom field IDs with list_custom_fields before updating.

Instructions

Update an existing task. Supports updating custom field values via the custom_fields parameter — use list_custom_fields to get field IDs first.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleNoTask title
list_idNoList ID to move task to
task_idYesThe task ID
due_dateNoDue date (ISO 8601 format)
priorityNoTask priority
status_idNoStatus ID
start_dateNoStart date (ISO 8601 format)
descriptionNoTask description (HTML)
assignee_idsNoArray of user IDs to assign. Replaces current assignees. Pass [] to remove all. Omit to keep unchanged. Use list_members to resolve member IDs.
custom_fieldsNoCustom field values to update. Only listed fields are changed; omitted fields are left unchanged. Pass value: null to clear a field.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.4.1

TDQS

A3.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of disclosing behavioral traits. It states that the tool updates an existing task, and mentions custom field support, but it does not explain partial-update semantics, whether unspecified fields are preserved, required permissions, or any side effects. This is a significant gap for a mutation tool.

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 a single, front-loaded sentence. It states the main purpose first, then adds the most relevant extra detail (custom_fields and its prerequisite) without wasted words.

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

Completeness3/5

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

The schema is rich and covers all parameters, so the description does not need to re-explain them. But for a tool with 10 parameters, no output schema, and no annotations, the description omits return behavior and update semantics (merge vs replace). It is adequate for invocation but not fully complete in context.

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 coverage is 100%, so baseline is 3. The description adds value beyond the schema by instructing the agent to call list_custom_fields to obtain valid custom field IDs first, which is a useful workflow hint not present in the schema. It also points directly to the custom_fields parameter as a distinguishing capability.

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 uses a specific verb and resource: 'Update an existing task.' This clearly differentiates it from sibling tools like create_task, get_task, list_tasks, and delete_task. The additional mention of custom_fields support further clarifies a unique capability.

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 phrase 'existing task' sets clear context for when this tool applies, implicitly excluding creation and deletion. It also gives a specific prerequisite: use list_custom_fields to resolve field IDs before passing custom_fields. However, it does not explicitly name alternative tools or exclude cases where other update tools might be preferred.

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