my_apple_save_memory
Execute AppleScript on a remote MacOS device to save information directly to Apple Notes. Automatically creates timestamped notes for organized storage and retrieval.
Instructions
Run Apple Script on a remote MacOs machine. This call should be used to save relevant information to the apple notes. You decide what information to save. You should always add a new notes with a timestamp as the title.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code_snippet | Yes | AppleScript code to execute on the remote machine. Can be a single line or multi-line script. You should prefer multi-line scripts for complex operations. | |
timeout | No | Command execution timeout in seconds (default: 60) |
Input Schema (JSON Schema)
{
"properties": {
"code_snippet": {
"description": "AppleScript code to execute on the remote machine. Can be a single line or multi-line script. You should prefer multi-line scripts for complex operations.",
"type": "string"
},
"timeout": {
"description": "Command execution timeout in seconds (default: 60)",
"type": "integer"
}
},
"required": [
"code_snippet"
],
"type": "object"
}