Search Memories (Recall)
recall_searchRetrieve memories matching a free-text query, ranked by relevance. Filter by memory type and limit results to find specific information.
Instructions
Recall memories relevant to a free-text query, ranked by relevance.
This is the primary retrieval tool. It scores every memory against the query (a hit in the name outweighs the description, which outweighs the body), drops non-matches, and returns the best results first.
Args:
query: free text to match against names, descriptions, and bodies
type: optional filter to a single memory type
limit: max results (default 20)
response_format: 'markdown' (default) or 'json'
Returns ranked matches with their relevance scores. Empty if nothing matches.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Optional: restrict to a single memory type | |
| limit | No | Maximum number of results to return | |
| query | Yes | Free-text recall query | |
| response_format | No | 'markdown' for human-readable, 'json' for structured data | markdown |