process_note_request
Submit text requests to create, update, delete, or search Apple Notes through the NotesY MCP server, enabling streamlined note management via natural language commands.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"text": {
"minLength": 1,
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}