search_nodes
Search memory nodes using full-text FTS5 queries with BM25 ranking. Supports terms, phrases, AND/OR/NOT operators, and prefix matching for relevant results.
Instructions
Full-text search with BM25 ranking. Returns matching entities sorted by relevance. Supports FTS5 query syntax: simple terms (auth), phrases ("user auth"), AND/OR/NOT operators (user AND auth), prefix matching (auth*), proximity search (NEAR(user auth, 5)). Simple queries auto-convert to prefix-matching AND search.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Memory category. Defaults to 'default' | |
| query | Yes | FTS5 search query. Examples: 'authentication', 'user AND auth', '"user authentication"', 'auth*', 'user OR admin' | |
| limit | No | Maximum number of results to return. Defaults to 50 |