Search Documentation
Search across all documentation pages
read_memories
Read and decrypt full memory entries by IDs. Use this after search_memories with compact: true to retrieve the full content of specific memories you want to examine in detail.
Parameters#
| Parameter | Type | Required | Description |
|---|---|---|---|
| memoryIds | string[] (UUIDs) | required | Array of memory IDs to read (1-50) |
Returns#
An array of full memory objects with decrypted content, including ID, content, summary, memory type, importance, confidence, entities, related memory IDs, and metadata.
Example#
json
{
"tool": "read_memories",
"arguments": {
"memoryIds": [
"a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"b2c3d4e5-f6a7-8901-bcde-f12345678901"
]
}
}