memory_list
List the user's most recent memories in reverse chronological order. Use for browsing or catching up on what the user's other model sessions have written recently. Same content/content_raw shape as memory_search. Optional filters (tags, written_by, session_id, since, until) narrow the listing at the SQL level.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| raw | No | Return original prose instead of the compressed form. Default false. | |
| tags | No | Only return memories containing ALL of these tags (AND semantics). | |
| limit | No | Max rows to return (1–200). Default 50. | |
| since | No | Only return memories created at or after this ms-epoch timestamp. | |
| until | No | Only return memories created strictly before this ms-epoch timestamp. | |
| cursor | No | Pagination cursor from a previous call's `cursor` field (ms epoch); returns rows older than this timestamp. | |
| session_id | No | Only return memories with an exact session_id match. | |
| written_by | No | Only return memories with an exact written_by match. |