memory_search
Search through saved memory entries by matching any substring within their values or tags. Solves the problem of recalling content when the exact key is unknown. Returns results ranked by relevance.
Instructions
Full-text substring search over stored memory values.
Returns matching (key, value, tag, score) entries ranked by relevance.
USE WHEN: you don't remember the exact key but know a substring of the value or its tag. NOT FOR: exact-key lookup (use memory_recall) or true semantic similarity (use memory_semantic_search).
BEHAVIOR: pure read. SQLite FTS over the memory table. Sub-100 ms for typical sizes.
PARAMETERS: query: substring or FTS expression. Required, non-empty. limit: max results. Range 1-100. Default 20.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | ||
| limit | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |