memory_search
Filter stored memories by status, category, date, or entity. Leave the query empty to list items created or reactivated since a given timestamp.
Instructions
Filtered vector search by status, category, date, or entity. Pass an EMPTY query to enumerate by recency instead (no vector search, no embedder needed): with since/active_since this answers 'what's new/changed since ' without knowing what to query for.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| k | No | ||
| query | Yes | Search text. Empty string switches to enumeration mode: nodes listed by last_reactivated_at descending, honoring the same filters. | |
| filters | No | Supported keys: status (list), category, entity, since (ISO date — created_at >= since; tz-naive treated as UTC), active_since (ISO date — last_reactivated_at >= active_since; tz-naive treated as UTC). With a non-empty query, results are vector-seeded and k-limited; use an empty query for enumeration. |