amber_list_memories
Browse active memories in reverse chronological order with cursor-based pagination. Each memory includes full content, metadata, and topics.
Instructions
Browse all active memories in reverse chronological order (newest first). Use cursor-based pagination via after_id. has_more tells you whether another page exists. Prefer amber_search_memories when looking for specific content; use this when the user wants a browsing overview or asks "show me my recent memories".
Each result includes full content (not truncated), metadata, topics, and creation timestamp. Read-only — does not modify any memories. Not rate-limited. Requires an active subscription.
Returns memories array, next_cursor (null if no more pages), and has_more boolean.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of memories per page (default 20, min 1, max 100). Use smaller values (5-10) for quick overviews, larger values (50-100) for bulk browsing. Omit to use the default of 20. | |
| after_id | No | Pagination cursor (memory ID string). Pass the `next_cursor` value from a previous response to fetch the next page. Omit on the first call to start from the newest memory. Do not fabricate cursor values. |