list_tasks
Fetch task summaries from Outlook with pagination and optional filtering to show only incomplete tasks. Use offset and limit for paging; set include_completed false to exclude finished tasks.
Instructions
List task summaries from Outlook with pagination and optional completion filtering. Returns {items, count, hasMore} — increment offset by limit when hasMore is true. Set include_completed to false to see only incomplete tasks. For full details including body and reminder, use get_task.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of tasks to return, 1-100 (e.g., 10). Defaults to 25 if omitted. | |
| offset | No | Number of tasks to skip for pagination (e.g., 25 for page 2). Defaults to 0 if omitted. | |
| include_completed | No | Whether to include completed tasks. Set to false to see only incomplete tasks. Defaults to true if omitted. |