ofw_list_messages
Retrieve messages from the OurFamilyWizard cache to review co-parenting conversations, filter by folder, date range, or subject/body text.
Instructions
List messages from the local OurFamilyWizard cache. Supports filtering by folder, date range, and a substring query on subject+body. Pagination is offset-based but if you know what you want (a date range, a topic), prefer the filters over walking pages — the cache may have 1000+ messages. Call ofw_sync_messages first if the cache is empty or stale.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Substring match on subject AND body (case-insensitive). Use to find messages on a specific topic. | |
| page | No | Page number (default 1) | |
| size | No | Messages per page (default 50) | |
| since | No | ISO date or datetime — only messages with sent_at >= since (inclusive) | |
| until | No | ISO date or datetime — only messages with sent_at < until (exclusive) | |
| folderId | No | Folder name: "inbox", "sent", or "both" (default "both") |