ClickUp MCP Server

clickup_update_task

Update an existing task in ClickUp

Input Schema

NameRequiredDescriptionDefault
assigneesNoArray of assignee user IDs
descriptionNoTask description in markdown format
due_dateNoDue date in milliseconds timestamp
nameNoTask name
priorityNoTask priority (1: Urgent, 2: High, 3: Normal, 4: Low)
statusNoTask status
tagsNoArray of tag names
task_idYesThe ID of the task to update. The unique identifier for the resource in ClickUp.
time_estimateNoTime estimate in milliseconds

Input Schema (JSON Schema)

{ "properties": { "assignees": { "description": "Array of assignee user IDs", "items": { "type": "string" }, "type": "array" }, "description": { "description": "Task description in markdown format", "type": "string" }, "due_date": { "description": "Due date in milliseconds timestamp", "type": "string" }, "name": { "description": "Task name", "type": "string" }, "priority": { "description": "Task priority (1: Urgent, 2: High, 3: Normal, 4: Low)", "enum": [ 1, 2, 3, 4 ], "type": "number" }, "status": { "description": "Task status", "type": "string" }, "tags": { "description": "Array of tag names", "items": { "type": "string" }, "type": "array" }, "task_id": { "description": "The ID of the task to update. The unique identifier for the resource in ClickUp.", "type": "string" }, "time_estimate": { "description": "Time estimate in milliseconds", "type": "string" } }, "required": [ "task_id" ], "type": "object" }