my_apple_recall_memory
Execute AppleScript remotely on macOS to retrieve notes, calendar events, iMessages, files, and other data. Ideal for accessing and managing information stored on a Mac machine.
Instructions
Run Apple Script on a remote MacOs machine. This call should be used to recall the apple notes, apple calendar, imessages, chat messages, files, context or any other information of a MacOs machine can have access to.
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"
}