notes_search
Search Apple Notes for specific text within titles, bodies, or specified folders. Customize results by limiting output and including/excluding note bodies for precise retrieval.
Instructions
[Apple Notes operations] Search for notes containing specific text
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folder | No | Optional folder name to search in | |
includeBody | No | Whether to include note body in results (default: true) | |
limit | No | Maximum number of results to return (default: 5) | |
query | Yes | Text to search for in notes (title and body) |
Input Schema (JSON Schema)
{
"properties": {
"folder": {
"description": "Optional folder name to search in",
"type": "string"
},
"includeBody": {
"description": "Whether to include note body in results (default: true)",
"type": "boolean"
},
"limit": {
"description": "Maximum number of results to return (default: 5)",
"type": "number"
},
"query": {
"description": "Text to search for in notes (title and body)",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}