memory_recall
Retrieve a stored value from your local memory database by providing the exact key. Returns the saved content as a string or indicates if the key is not found.
Instructions
Recall the value stored at an exact key from the local memory database.
Returns the stored value as a string, or a "not found" indicator if the key doesn't exist.
USE WHEN: you stored something via memory_store and need to retrieve it by its exact key. NOT FOR: fuzzy or substring lookup — use memory_search. For semantic similarity, use memory_semantic_search.
BEHAVIOR: pure read. Sub-millisecond. Does NOT update any access timestamp — repeated recall is invisible.
PARAMETERS: key: exact key as passed to memory_store. Case-sensitive. Required.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |