List memories around an id (chronological)
memory_timelineRetrieve chronological neighbours of a memory anchor to recover work-session context. Cheaper than fetching neighbours individually. Use after memory_search.
Instructions
Return the chronological neighbourhood of memories around an anchor id (~200 tok/neighbour). Read-only. Use after memory_search(detail="index") to recover work-session context for one hit. Cheaper than calling memory_get on each neighbour individually.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The anchor memory id to centre the window on. Get this from `memory_search` or `memory_store`. | |
| window | No | Number of neighbours to return on each side (1-10). Default 3 → up to 6 neighbours total. | |
| detail | No | Disclosure level — `index` (titles only) or `summary` (titles + short preview, default). `full` is intentionally not offered here; use `memory_get` for that. | summary |
| same_session_only | No | If true (default), only include neighbours captured in the same session as the anchor. Set false to span sessions. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| message | Yes | Markdown list of neighbour memories (anchor + window on each side) at the requested `detail` level. Returns `Memory <id> not found.` when the anchor is missing. |