recall_mementos
Find persistent knowledge across sessions using natural language queries. Handles conceptual questions and fuzzy matching for long-term memory retrieval.
Instructions
Primary tool for finding mementos using natural language queries.
Optimized for fuzzy matching - handles plurals, tenses, and case variations automatically.
BEST FOR:
Conceptual queries ("how does X work")
General exploration ("what do we know about authentication")
Fuzzy/approximate matching
USE FOR: Long-term knowledge that survives across sessions. DO NOT USE FOR: Temporary session context or project-specific state.
LESS EFFECTIVE FOR:
Acronyms (DCAD, JWT, API) - use search_mementos with tags instead
Proper nouns (company names, services)
Exact technical terms
EXAMPLES:
recall_mementos(query="timeout fix") - find timeout-related solutions
recall_mementos(query="how does auth work") - conceptual query
recall_mementos(project_path="/app") - memories from specific project
FALLBACK: If recall returns no relevant results, try search_mementos with tags filter.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Natural language query for what you're looking for | |
| memory_types | No | Optional: Filter by memory types for more precision | |
| project_path | No | Optional: Filter by project path to scope results | |
| limit | No | Maximum number of results per page (default: 20) | |
| offset | No | Number of results to skip for pagination (default: 0) |