list_recent
Retrieve recently opened links, sorted from newest to oldest. Filter by day or time range, and adjust pagination to find any specific link.
Instructions
List recently opened links, ordered by most recent first. If you don't see what the user wants in the first call, do NOT give up — increase limit (the default of 50 is small relative to a power user's history), page back with offset, or narrow with day/since/until. To find what someone opened on a specific day, prefer day="YYYY-MM-DD" (or "today"/"yesterday") over scrolling. Combine day with a higher limit to see everything from that day.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| day | No | Filter to a single day. Accepts 'today', 'yesterday', or 'YYYY-MM-DD' (e.g. '2026-04-30'). Sets since/until automatically. | |
| limit | No | Max results to return (default: 50, max: 1000). Increase this before assuming a link isn't there. | |
| since | No | Only links opened at or after this time. ISO-8601 datetime ('2026-04-28T00:00:00Z') or bare 'YYYY-MM-DD'. Ignored if `day` is set. | |
| until | No | Only links opened before this time. ISO-8601 datetime or bare 'YYYY-MM-DD' (treated as end-of-day). Ignored if `day` is set. | |
| offset | No | Skip the first N items. Use to paginate when limit is exhausted. |