notes_get
Retrieve a specific note from Apple Notes by its title using AppleScript through the MCP server. Optional folder search to locate the note efficiently.
Instructions
[Apple Notes operations] Get a specific note by title
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folder | No | Optional folder name to search in | |
title | Yes | Title of the note to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"folder": {
"description": "Optional folder name to search in",
"type": "string"
},
"title": {
"description": "Title of the note to retrieve",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}