| name | clickup-core-workflow-a |
| description | Manage ClickUp tasks via API v2: create, read, update, delete tasks with
assignees, priorities, due dates, subtasks, and statuses.
Trigger: "clickup task", "create clickup task", "update task status",
"manage clickup tasks", "clickup CRUD", "clickup task management".
|
| allowed-tools | Read, Write, Edit, Bash(curl:*), Grep |
| version | 1.6.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","productivity","clickup"] |
| compatibility | Designed for Claude Code |
ClickUp Core Workflow A — Task Management
Overview
CRUD operations on ClickUp tasks via API v2. Tasks live in Lists and support assignees, priorities (1-4), statuses, due dates, tags, checklists, and custom fields.
Endpoints
| Operation | Method | Endpoint |
|---|
| Create task | POST | /api/v2/list/{list_id}/task |
| Get task | GET | /api/v2/task/{task_id} |
| Update task | PUT | /api/v2/task/{task_id} |
| Delete task | DELETE | /api/v2/task/{task_id} |
| Get tasks in list | GET | /api/v2/list/{list_id}/task |
| Add task to list | POST | /api/v2/list/{list_id}/task/{task_id} |
| Create subtask | POST | /api/v2/list/{list_id}/task (with parent field) |
Create Task
interface CreateTaskBody {
name: string;
description?: string;
markdown_description?: string;
assignees?: number[];
tags?: string[];
status?: string;
priority?: 1 | 2 | | | ;
?: ;
?: ;
?: ;
?: ;
?: ;
?: ;
?: ;
?: ;
?: <{
: ;
: ;
}>;
}
() {
(, {
: ,
: .(task),
});
}
(, {
: ,
: ,
: [],
: ,
: ,
: .() + ,
: ,
: [, ],
});