Get tasks
tasks_getList tasks (RLS-scoped). Every row carries blocked and blocked_by: a task can be perfectly ready in every other respect and still be unstartable because something it waits on is not Done. NEVER tell anyone to get on with a task without saying it is blocked, and prefer an unblocked one when asked what to pick up. DEFAULTS TO ACTIVE TASKS ONLY - archived ones are excluded. Done tasks in a live project ARE included, the same as the board in Matrix shows them. Say so when you answer ("you have 7 active tasks"), and read meta.scope_note. Pass scope: archived or all only when the question is about finished or historical work. Optional filters: project, assignee, status. Max limit 200 - the response always carries pagination.total (full match count) plus has_more/next_cursor. Do not count or total these rows while has_more is true. NOTE: time is logged on projects, not tasks, so there is no per-task actual-hours figure. est_hours is the estimate; do not infer spent or remaining hours from these rows.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max 200. | |
| scope | No | active (default) covers only what is still live. Use archived for finished or lost records, or all when the question spans both - historical revenue, deals closed over a period, anything measured across time. Always tell the user which set your answer covers. | active |
| cursor | No | Opaque cursor from a previous response's pagination.next_cursor. Preferred over offset: keyset paging never skips or duplicates rows. | |
| offset | No | Row offset for offset-based paging. Ignored when cursor is supplied. | |
| status | No | ||
| blocked | No | true returns only tasks waiting on unfinished work; false only those that can be started. | |
| archived | No | Explicit override. Setting it wins over scope. | |
| project_id | No | ||
| assignee_id | No | Filter to tasks this person is assigned to. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| meta | No | ||
| tasks | Yes | ||
| warning | No | Present only when the page is truncated. | |
| pagination | Yes |