search_tasks
Search Microsoft Outlook tasks by querying task names. Filter results with limit and offset, and use hasMore to paginate until all matches are retrieved.
Instructions
Search tasks by matching the query against task names. Returns {items, count, hasMore} — increment offset by limit when hasMore is true. For full task details, call get_task on a matching ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of tasks to return, 1-100 (e.g., 10). Defaults to 25 if omitted. | |
| query | Yes | Search query text matched against task names (e.g., "review") | |
| offset | No | Number of tasks to skip for pagination (e.g., 25 for page 2). Defaults to 0 if omitted. |