send_imessage
Send iMessages via the Messages app by specifying a recipient and message content using a local server interface.
Instructions
Send an iMessage using Messages app
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | Message content to send | |
recipient | Yes | Phone number or email of the recipient |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"description": "Message content to send",
"type": "string"
},
"recipient": {
"description": "Phone number or email of the recipient",
"type": "string"
}
},
"required": [
"recipient",
"message"
],
"type": "object"
}