create_task
Create a new ClickUp task in a specific list. Configure title, description, assignee, status, priority, story points, or create it as a subtask under a parent task.
Instructions
Create a new task in a specific list.
For sprint tasks, prefer create_sprint_task which auto-resolves the sprint list.
Args: name: Task title. list_id: Target list ID. Use get_current_sprint or get_workspace_hierarchy to find IDs. Always required, but if parent_task_id names a task in a different list, the task is created there instead (ClickUp requires parent and child to share a list) — see list_id_override in the result. description: Task description (markdown supported). assignee_id: User ID to assign. Use get_current_user to find your ID. status: Initial status. Omitted unless given, so the target list's own default status applies. ClickUp configures status sets per list, so no value is safe to impose on an arbitrary list_id. points: Story points. team: Component/Team label. See list_teams for available values. parent_task_id: Parent task ID for creating subtasks. Its list wins over list_id when the two differ. priority: 1=urgent, 2=high, 3=normal, 4=low.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| team | No | ||
| points | No | ||
| status | No | ||
| list_id | Yes | ||
| priority | No | ||
| assignee_id | No | ||
| description | No | ||
| parent_task_id | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |