Search tasks
clickup_search_tasksSearch/filter tasks across a whole workspace (team), optionally scoped to spaces/folders/lists. ClickUp's "Get Filtered Team Tasks". ClickUp REST: GET /team/{team_id}/task.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | 0-indexed page number for pagination. | |
| reverse | No | Reverse the sort order (serialized true/false). | |
| team_id | Yes | The workspace (team) id. | |
| list_ids | No | Restrict to these list ids (repeated list_ids[] params). | |
| order_by | No | Sort field, e.g. 'created', 'updated', 'due_date', 'id'. | |
| statuses | No | Filter by status names (repeated statuses[] params), e.g. ["open","in progress"]. | |
| assignees | No | Filter by assignee user ids (repeated assignees[] params). | |
| space_ids | No | Restrict to these space ids (repeated space_ids[] params). | |
| due_date_gt | No | Only tasks due after this Unix time in ms. | |
| due_date_lt | No | Only tasks due before this Unix time in ms. | |
| project_ids | No | Restrict to these folder/project ids (repeated project_ids[] params). | |
| include_closed | No | Include closed tasks (serialized true/false). |