send_group_message
Send a text message to a Signal group. Members receive it, and the timestamp enables reactions, edits, or quoting.
Instructions
Send a text message to a Signal group. All group members receive the message. Returns the sent timestamp for use with react_to_message or edit_message. To @mention specific members, provide a mentions list with character offsets into the message text. To reply to a message, provide quote_author and quote_timestamp. Use list_groups to find the group_id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| group_id | Yes | Group ID (get from list_groups) | |
| message | Yes | Message text to send | |
| mentions | No | List of @mentions: each item is {start, length, author} where start/length are character offsets into the message and author is a phone number | |
| quote_author | No | Phone number of the author of the message being quoted/replied to | |
| quote_timestamp | No | Timestamp of the message being quoted/replied to (from get_conversation) |