get_memory
Retrieve a specific memory by its unique ID to access stored content and metadata. Use when you have a memory_id from prior search results; returns null if not found.
Instructions
Retrieve a single memory by its unique ID. Use when you have a specific memory_id from prior search/list results. Returns null if not found. Prefer search_memory for content-based lookup. Read-only operation. Returns: Memory object {id, content, user_id, metadata} or null.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | No | User namespace. Must match the user_id used when memory was created. Default: "oliver". | |
| memory_id | Yes | Unique identifier of the memory to retrieve. Obtained from add_memory response, search_memory results, or get_all_memories. |