amber_list_deleted_memories
Browse recently deleted memories in reverse chronological order. Paginate through results with cursor-based pagination to review or restore memories.
Instructions
Browse the trash in reverse chronological order of deletion (most recently deleted first). Supports cursor pagination via after_id. has_more tells you whether another page exists. Use amber_restore_memory to bring an item back, or amber_search_deleted_memories for meaning-based search within the trash.
Each result includes full content (not truncated), metadata, topics, creation timestamp, and deletion timestamp. Read-only — does not modify or permanently delete 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 deleted memories per page (default 20, min 1, max 100). Use smaller values (5-10) for quick checks, larger values (50-100) for bulk review. 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 most recently deleted memory. Do not fabricate cursor values. |