list_tasks
Lists tasks in the household with optional filters (assignee, due-date range, completion status) and cursor-based pagination. Excludes completed tasks by default; results are sorted by due date ascending, with tasks that have no due date listed first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of tasks to return per page. 1-100, default 50. | |
| cursor | No | Opaque pagination cursor from a previous list_tasks response's nextCursor. Omit to fetch the first page. | |
| dueDateOnOrAfter | No | Only include tasks with a due date on or after this date (YYYY-MM-DD). Tasks with no due date never match. | |
| includeCompleted | No | Whether to include completed tasks in the results. Default: false | |
| dueDateOnOrBefore | No | Only include tasks with a due date on or before this date (YYYY-MM-DD). Tasks with no due date never match. | |
| assignedToMemberId | No | Filter to tasks assigned to this household member ID. Omit to include tasks for all assignees. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| items | Yes | ||
| title | No | ||
| message | No | ||
| variant | No |