Read one memory in full
memorysync_getRetrieve a complete memory record by its ID, including text, tags, importance, and timestamps, to verify relevance or check if a fact is stale after a search.
Instructions
Fetch the complete stored record for a single memory id, including its text, tags, importance and timestamps. Use this after memorysync_search when a result looks relevant but the snippet is not enough to act on, or when you need the creation date to judge whether a fact is stale. Takes an id, not a search phrase - to find a memory by topic, call memorysync_search first and pass an id from its results.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| memory_id | Yes | Identifier of the memory to read, taken from the id field of a memorysync_search result. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Identifier of the memory. | |
| tags | No | Tags attached to this memory. | |
| text | Yes | The stored fact in full. | |
| created_at | No | When the fact was first observed, for judging staleness. | |
| importance | No | Importance score used in ranking. | |
| updated_at | No | When the record last changed. |