Recall Memory
memory_recallRetrieve saved notes by exact key or search term. Find previously stored information using substring matching across keys, values, and tags.
Instructions
Retrieve saved notes. Give an exact key for a single note, or a search term to match across keys/values/tags. Call this when you might already know something the user told you earlier.
Args:
key (string): Optional exact key to fetch.
search (string): Optional text to match (substring, case-insensitive).
limit (number): Max results for a search (default 10).
Returns matching { key, value, tags, updated_at } records.
Example: { "search": "timezone" }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | No | Exact key to fetch | |
| search | No | Substring to match | |
| limit | No | Max results |