search_memory
Find stored memories by meaning using a natural language query. Ask what you need to recall and get the most relevant results ranked by similarity, making it easy to recover past decisions.
Instructions
Find memories by meaning.
Semantic search over everything stored, so "what database did we pick?" finds a memory that says "we went with SQLite". Results are ranked by similarity, highest first.
To page through more matches, keep the same query and advance offset by
limit — ranking is stable, so pages don't overlap or skip. An offset past
the last match returns no results.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Only consider memories carrying all of these tags. | |
| limit | No | Maximum number of memories to return. | |
| query | Yes | What you are trying to remember, in natural language. | |
| offset | No | Skip this many ranked results before returning `limit` of them. | |
| min_score | No | Drop results scoring below this (0.0-1.0). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||