search_notes
Find specific text within your Markdown notes using full-text search to quickly locate relevant information across your note collection.
Instructions
Search for text within notes
Args: query: Search query
Returns: List of notes containing the query
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}