list_tasks
Retrieve tasks from all workflows or a specific workflow, with optional filters for status, priority, and assignment. Returns status, creator, priority, and due dates.
Instructions
List tasks. Omit workflowId to list ALL tasks across every workflow in the workspace. Provide workflowId to list a single workflow's tasks instead; these are DB tasks by default, or phase files tagged "task" for legacy file-backed workflows. Returns status, creator, priority, and due dates. Use sparingly — load_workflow already includes active workflow tasks.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mine | No | Cross-workflow listing only: return just tasks assigned to you plus unassigned ones. Ignored when workflowId is set. Default: false (all tasks across the workspace). | |
| status | No | Optional comma-separated status filter: not_started,in_progress,done,dismissed | |
| priority | No | Filter tasks by priority. Omit to return all priorities. | |
| workflowId | No | Workflow ID. Omit to list all tasks across every workflow in the workspace. | |
| workspaceId | No | Workspace ID. Defaults to your configured workspace. | |
| includeDismissed | No | Include dismissed tasks. Default: false. |