tool_send_message
Send messages via the macOS Messages app by specifying recipients and message text. Supports phone numbers, emails, contact names, and group chats for efficient communication.
Instructions
Send a message using the Messages app.
Args:
recipient: Phone number, email, contact name, or "contact:N" to select from matches
For example, "contact:1" selects the first contact from a previous search
message: Message text to send
group_chat: Whether to send to a group chat (uses chat ID instead of buddy)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
group_chat | No | ||
message | Yes | ||
recipient | Yes |
Input Schema (JSON Schema)
{
"properties": {
"group_chat": {
"default": false,
"title": "Group Chat",
"type": "boolean"
},
"message": {
"title": "Message",
"type": "string"
},
"recipient": {
"title": "Recipient",
"type": "string"
}
},
"required": [
"recipient",
"message"
],
"title": "tool_send_messageArguments",
"type": "object"
}