clickup_task_search
Search tasks across your ClickUp workspace using filters for spaces, lists, assignees, or statuses to find specific items efficiently.
Instructions
Search tasks across an entire ClickUp workspace with optional space/list/status/assignee filters — useful for cross-list queries. Returns a paginated array of task objects. For tasks in a single list, prefer clickup_task_list (fewer parameters, same shape).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assignees | No | User IDs (as strings) to restrict to tasks assigned to them. Obtain from clickup_member_list. Omit to return tasks regardless of assignee. | |
| list_ids | No | Restrict results to these list IDs. Obtain from clickup_list_list (field: id). Omit to search all lists. | |
| space_ids | No | Restrict results to these space IDs. Obtain from clickup_space_list (field: id). Omit to search all spaces. | |
| statuses | No | Status names to include (e.g. ['open','in review']). Case-sensitive. Omit for any open status. | |
| team_id | No | Workspace (team) ID to search within. Obtain from clickup_workspace_list (field: id). Omit to use the default workspace from config. |