clickup_list_create
Create task lists in ClickUp folders or spaces to organize work. Specify parent folder or space, set list name, description, due date, and default task status for structured project management.
Instructions
Create a new task list inside either a folder or a space (folderless). Exactly one of folder_id or space_id must be provided. Returns the created list object including its new id — use it as list_id for clickup_task_create and related calls.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | No | List description shown at the top of the list. Markdown supported. Omit for no description. | |
| due_date | No | List-level due date as a Unix timestamp in milliseconds (e.g. 1735689600000 for 2025-01-01). Individual tasks retain their own due dates. | |
| folder_id | No | ID of the parent folder. Obtain from clickup_folder_list (field: id). Mutually exclusive with space_id. | |
| name | Yes | Display name for the list. Required and non-empty. | |
| space_id | No | ID of the parent space — creates a folderless list attached directly to the space. Obtain from clickup_space_list (field: id). Mutually exclusive with folder_id. | |
| status | No | Default status for tasks added to this list. Must match a status name from the parent space's status set. |