List Tasks
task_listList tasks in the workspace, most recently updated first. Filter by view (inbox, today, upcoming, anytime, someday) and/or state (open, done, archived, all); search ranks matches within that filter. Returns up to limit tasks; hasMore is true when more matched than were returned.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| view | No | Filter by GTD view bucket | |
| limit | No | Max results | |
| state | No | Filter by task state | open |
| cursor | No | Opaque pagination cursor from a previous call's `nextCursor`. Pass it with the same filters to fetch the next page. | |
| search | No | Ranked lexical search over title/description; when set, results are ordered by relevance instead of recency | |
| context | Yes | Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): "Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization." | |
| timezone | No | IANA timezone used to resolve "today" for views and scheduling (e.g. Australia/Melbourne). Defaults to UTC, which misclassifies Today/Upcoming for users in other timezones, so always pass the user's timezone when known. | |
| workspace | No | Workspace id, slug, or name |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | Yes | ||
| tasks | Yes | ||
| total | Yes | ||
| hasMore | Yes | True when more results matched than were returned | |
| nextCursor | Yes |