Skip to main content

ClickUp

Connects to the ClickUp API for managing tasks, lists, and spaces. An agent can create, read, update, list, and delete tasks, and list spaces in a workspace.

Add to an agent node's tools array with _node_type: "tool-clickup". See Connector Reference — How connectors are used.

Authentication

FieldRequiredDescription
api_tokenYes (or token)ClickUp API token, sent as the Authorization header.
tokenFallbackUsed if api_token is not set.
team_idNoClickUp workspace (team) ID, used as the default for clickup_list_spaces if not provided per-call.
{
"name": "clickup",
"_node_type": "tool-clickup",
"api_token": "{{ secret.CLICKUP_API_TOKEN }}",
"team_id": "9000000000"
}

Tools

clickup_create_task

Create a new task in a ClickUp list.

Parameters

ParameterTypeRequiredDescription
list_idstringYesList ID to create task in
namestringYesTask name
descriptionstringNoTask description
statusstringNoTask status (e.g. to do, in progress, done)
prioritynumberNoPriority 1=urgent 2=high 3=normal 4=low
assigneesstringNoComma-separated user IDs to assign
due_datestringNoDue date as Unix timestamp ms or ISO date

Returns: A confirmation message with the new task's ID, name and URL.

clickup_get_task

Get details of a ClickUp task.

Parameters

ParameterTypeRequiredDescription
task_idstringYesTask ID

Returns: The raw JSON response for the task.

clickup_update_task

Update a ClickUp task.

Parameters

ParameterTypeRequiredDescription
task_idstringYesTask ID
namestringNoNew task name
descriptionstringNoNew description
statusstringNoNew status
prioritynumberNoNew priority

Returns: A confirmation message with the task's ID and updated status.

clickup_list_tasks

List tasks in a ClickUp list.

Parameters

ParameterTypeRequiredDescription
list_idstringYesList ID
pagenumberNoPage number (0-based)
archivedbooleanNoInclude archived tasks

Returns: A count line followed by a newline-separated list of [id] name (status) lines.

clickup_delete_task

Delete a ClickUp task.

Parameters

ParameterTypeRequiredDescription
task_idstringYesTask ID

Returns: A confirmation message that the task was deleted.

clickup_list_spaces

List spaces in a ClickUp workspace.

Parameters

ParameterTypeRequiredDescription
team_idstringNoTeam/workspace ID (overrides the team_id credential)

Returns: A newline-separated list of [id] name lines. Returns an error if no team_id is available from either the parameter or credentials.

Next