Search Documentation
Search across all documentation pages
search_notes
Search notes by keyword. Results are weighted: 3x title, 2x tags, 1x content. Returns scored results sorted by relevance. For meaning-based search, use semantic_search or search_and_read instead.
Parameters#
| Parameter | Type | Required | Description |
|---|---|---|---|
| query | string | required | Search query |
| vaultId | string (UUID) | optional | Limit search to a specific vault |
| limit | integer (1-50) | optional | Max results (default 10) |
Returns#
An array of note objects with relevance scores, each containing the note ID, title, tags, content preview, and match score.
Example#
json
{
"tool": "search_notes",
"arguments": {
"query": "API design",
"limit": 5
}
}