Apple Notes Integration
Integrate with Apple Notes on macOS using AppleScript.
Available Tools
- •bash: Execute osascript commands
AppleScript Commands
Create Note
applescript
osascript -e 'tell application "Notes"
make new note at folder "Notes" with properties {name:"Title", body:"Content"}
end tell'
List Notes
applescript
osascript -e 'tell application "Notes"
name of every note
end tell'
Read Note
applescript
osascript -e 'tell application "Notes"
get body of note "Note Title"
end tell'
Search Notes
applescript
osascript -e 'tell application "Notes"
name of notes whose body contains "search term"
end tell'
Usage Examples
User: "Create a note about the meeting"
- •Format note title and content
- •Execute osascript with bash tool
- •Confirm creation
User: "Show my recent notes"
- •List notes with osascript
- •Parse output
- •Present formatted list
User: "Find notes containing 'project'"
- •Search with osascript
- •Parse matching notes
- •Present results
Platform
macOS only - requires osascript (built-in on macOS)
Limitations
- •Requires Notes.app to be installed
- •Cannot access password-protected notes
- •Formatting may be limited