notes
Manage Apple Notes app efficiently: search, retrieve, create notes, and organize folders directly through structured operations tailored for seamless task execution.
Instructions
Search, retrieve, create notes, and list folders in Apple Notes app
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | Content of the note to create (required for create operation) | |
folderName | No | Name of the folder. Used to scope 'search'/'list', specify target for 'create' (note) or 'createFolder', or name the new folder for 'createFolder'. Optional for search/list/create (defaults to 'Claude' for create note). | |
operation | Yes | Operation to perform: 'search', 'list', 'create', 'listFolders', or 'createFolder' | |
searchText | No | Text to search for in notes (required for search operation) | |
title | No | Title of the note to create (required for create operation) |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "Content of the note to create (required for create operation)",
"type": "string"
},
"folderName": {
"description": "Name of the folder. Used to scope 'search'/'list', specify target for 'create' (note) or 'createFolder', or name the new folder for 'createFolder'. Optional for search/list/create (defaults to 'Claude' for create note).",
"type": "string"
},
"operation": {
"description": "Operation to perform: 'search', 'list', 'create', 'listFolders', or 'createFolder'",
"enum": [
"search",
"list",
"create",
"listFolders",
"createFolder"
],
"type": "string"
},
"searchText": {
"description": "Text to search for in notes (required for search operation)",
"type": "string"
},
"title": {
"description": "Title of the note to create (required for create operation)",
"type": "string"
}
},
"required": [
"operation"
],
"type": "object"
}