ClickUp MCP Server

clickup_create_task

Create a new task in ClickUp workspace

Input Schema

NameRequiredDescriptionDefault
assigneesNoArray of assignee user IDs
descriptionNoTask description in markdown format
due_dateNoDue date in milliseconds timestamp
list_idYesThe ID of the list to create the task in. The unique identifier for the resource in ClickUp.
nameYesTask name
priorityNoTask priority (1: Urgent, 2: High, 3: Normal, 4: Low)
statusNoTask status
tagsNoArray of tag names
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" }, "list_id": { "description": "The ID of the list to create the task in. The unique identifier for the resource in ClickUp.", "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" }, "time_estimate": { "description": "Time estimate in milliseconds", "type": "string" } }, "required": [ "list_id", "name" ], "type": "object" }