List task lists
list_tasklistsList the user's Google Tasks task lists to get each list's ID, title, and update time. Use the returned tasklist_id as the entry point for managing tasks, or the @default alias for the default list.
Instructions
Lists the user's task lists: id, title, updated (RFC3339). Every task lives in exactly one list, so this is the entry point — task tools need a tasklist_id from here (or the "@default" alias for the default list). Paginate with page_token from nextPageToken; page_size caps a page at 1000 and the API's default is already 1000, so one call usually returns everything. The API has no search or ordering — filter client-side.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page_size | No | Max task lists per page (1..1000; the API's default is 1000). | |
| page_token | No | nextPageToken from the previous page. |