search_notes
Search Outlook notes by title or name only. Get paginated results and use get_note to fetch the full content of a matching note.
Instructions
Search notes by matching the query against note titles/names only (does not search body content). Returns {items, count, hasMore} — increment offset by limit when hasMore is true. For full note content, call get_note on a matching ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of notes to return, 1-100 (e.g., 10). Defaults to 25 if omitted. | |
| query | Yes | Search query text matched against note titles/names only — does not search body content (e.g., "meeting notes") | |
| offset | No | Number of notes to skip for pagination (e.g., 25 for page 2). Defaults to 0 if omitted. |