Send IRC message
irc_send_messageSend a message to an IRC channel or user. Use text for a single line or lines for multiline, and in_reply_to to thread replies.
Instructions
Send a message to a channel or user. Provide text (single line) or lines (multiline array). Use in_reply_to with a msgid to thread replies. On success returns { ok: true } and, when available, the server-assigned msgid (use it for follow-up reply/react/redact). ok: true means the server confirmed the send — trust it; do not re-read history to verify. A failed or unconfirmed send returns an error, never an empty result.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | No | ||
| lines | No | ||
| notice | No | ||
| target | Yes | ||
| account | No | ||
| in_reply_to | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ok | Yes | ||
| msgid | No |