Memory Recall
memory_recallRetrieve relevant past memories with natural language queries. Load prior context at project start to inform decisions.
Instructions
Semantically search stored memories and return the most relevant results. Call at the start of any project session to load prior context.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results to return (default 10). | |
| query | Yes | Natural language description of what to recall. | |
| scope | No | Scope to search: 'personal' for your own memories, 'org' for shared team memories, 'both' (or omit) for all accessible memories. | |
| offset | No | Number of results to skip for pagination (default 0). Use with limit to page through results: page 1 = offset 0, page 2 = offset 10, etc. | |
| project | No | Optional project filter. | |
| to_date | No | ISO 8601 timestamp. Only return memories created on or before this date (e.g. '2026-05-01T00:00:00Z'). | |
| from_date | No | ISO 8601 timestamp. Only return memories created on or after this date (e.g. '2026-04-01T00:00:00Z'). | |
| min_score | No | Minimum similarity score (0-1) to include in results (default 0.35). Increase to filter noise, decrease to cast a wider net. | |
| source_tool | No | Filter by originating tool (e.g. 'complete_task', 'memory_summarize_and_store', 'cowork'). Only memories created by this tool are returned. | |
| created_after | No | Deprecated: use `from_date`. | |
| created_before | No | Deprecated: use `to_date`. |