update_task
Modify task properties such as title, description, status, priority, due date, and assignees in ClickUp MCP Server to maintain accurate and up-to-date task management for streamlined workflows.
Instructions
Update task properties
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignees_add | No | User IDs to add as assignees | |
assignees_remove | No | User IDs to remove as assignees | |
description | No | New description | |
due_date | No | New due date | |
priority | No | New priority | |
status | No | New status | |
task_id | Yes | Task ID | |
title | No | New title |
Input Schema (JSON Schema)
{
"properties": {
"assignees_add": {
"description": "User IDs to add as assignees",
"items": {
"type": "integer"
},
"type": "array"
},
"assignees_remove": {
"description": "User IDs to remove as assignees",
"items": {
"type": "integer"
},
"type": "array"
},
"description": {
"description": "New description",
"type": "string"
},
"due_date": {
"description": "New due date",
"type": "string"
},
"priority": {
"description": "New priority",
"type": "integer"
},
"status": {
"description": "New status",
"type": "string"
},
"task_id": {
"description": "Task ID",
"type": "string"
},
"title": {
"description": "New title",
"type": "string"
}
},
"required": [
"task_id"
],
"type": "object"
}