list_notes
Retrieve summaries of Outlook notes with pagination. Use offset and limit to page through results, and check hasMore to continue loading.
Instructions
List note summaries from Outlook with pagination. Returns {items, count, hasMore} — increment offset by limit when hasMore is true. For full details including body content, use get_note. Use search_notes to find notes by title.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of notes to return, 1-100 (e.g., 10). Defaults to 25 if omitted. | |
| offset | No | Number of notes to skip for pagination (e.g., 25 for page 2). Defaults to 0 if omitted. |