clickup_task_list
Retrieve tasks from a specific ClickUp list with optional filters for status and assignees to manage workflow visibility.
Instructions
List tasks in a specific ClickUp list with optional status/assignee filters. Returns the first page of task objects in compact form (id, name, status, assignees, due_date). For cross-list or cross-space queries use clickup_task_search instead; for a single task use clickup_task_get.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assignees | No | User IDs (as strings) to filter assignees. Obtain from clickup_member_list or clickup_user_get. Omit to return tasks regardless of assignee. | |
| include_closed | No | true = include tasks whose status is in the 'closed' group; false or omitted = exclude closed tasks from the response. | |
| list_id | Yes | ID of the list to read tasks from. Obtain from clickup_list_list (field: id). | |
| statuses | No | Status names to include (e.g. ['open','in progress']). Case-sensitive, must match a status defined on the list. Omit to return tasks in any open status. |