Skip to main content
Glama

Update task

clickup_update_task
Destructive

WRITE: update fields on an existing task. Only the fields you pass are changed. ClickUp REST: PUT /task/{task_id}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoNew task name.
parentNoParent task id (re-parent as a subtask).
statusNoNew status name (must be valid for the list).
task_idYesThe task id to update (path param, not body).
archivedNoArchive (true) or unarchive (false) the task.
due_dateNoDue date as Unix time in ms.
priorityNoTask priority: 1=Urgent, 2=High, 3=Normal, 4=Low.
start_dateNoStart date as Unix time in ms.
descriptionNoNew task description / body text.
due_date_timeNoWhether due_date carries a time component (else date-only).

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4/5.0
Behavior4/5

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

The annotation destructiveHint=true already indicates mutation, and the description adds the important behavioral trait that only passed fields are changed, which is beyond the annotation. It also explicitly labels the operation as 'WRITE' and provides the REST method, giving useful context beyond the structured data.

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, front-loaded with 'WRITE:' and the core action, and each sentence conveys essential information (partial update behavior and REST endpoint). There is no filler, making it appropriately concise.

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?

With 10 parameters fully described in the schema and a destructive hint annotation, the description provides the necessary high-level context, including partial update behavior and the endpoint. It does not need to cover return values given the absence of an output schema, so it is sufficiently complete.

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 all 10 parameters with descriptions at 100% coverage, so the description does not need to elaborate. The description adds no parameter-specific semantics beyond the schema, thus the baseline score of 3 applies.

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 with a specific verb ('update') and resource ('existing task'), and it distinguishes from sibling tools like clickup_create_task by specifying it modifies an existing task. Mentioning the REST endpoint adds additional precision.

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

Usage Guidelines3/5

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

The description implies usage (when you need to modify an existing task) but does not explicitly contrast with alternatives like create_task or state when not to use. It provides a useful hint about partial updates, but lacks explicit when/when-not guidance.

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

Each tool targets a unique resource+action combination, with clear scoping (e.g., get_tasks vs search_tasks differ by list vs workspace, list_lists vs list_folderless_lists by parent). No two tools appear to do the same thing, and the descriptions make boundaries explicit.

Naming Consistency5/5

All tools follow a consistent verb_noun snake_case pattern (create_, get_, list_, search_, update_+resource), prefixed with clickup_. No camelCase or unconventional verbs are present.

Tool Count5/5

14 tools is a well-scoped size for a project management API, covering hierarchy traversal (workspaces, spaces, folders, lists), task operations, comments, and user info. Each tool serves a clear purpose without unnecessary bloat.

Completeness4/5

The surface covers core CRUD for tasks (create, read, update) and comments, plus full hierarchy listing and search. Minor gaps include no delete task/comment and no update/list operations for folders/lists, but these are workable and don't hinder the primary workflows.