remind_send_message
Send a message to a chat stream or class, requiring user confirmation before delivery. Check permissions.canSend first and use a confirmation prompt or confirmToken.
Instructions
Send a message to a chat stream or class. Delivers to real people and CANNOT be unsent. Nothing is sent until confirmed; the preview shows the exact payload. Asks the user to confirm first: a confirmation prompt where the client supports one; otherwise the first call returns a preview and a confirmToken, and only a repeat call with that token proceeds (see MCP_CONFIRM_MODE). Check permissions.canSend on the target first (remind_list_chats).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | Message text. | |
| urgent | No | Send as an urgent message. | |
| confirmToken | No | ONLY for the two-step confirmation fallback (a client without MCP elicitation). The confirmToken from this same tool's phase-1 "confirmation-required" response, passed back ONLY after the user has seen that preview and explicitly approved it in chat — never on the first call, never invented, never reused. Call again with the same arguments. Ignored when the client supports elicitation. | |
| recipient_type | No | `chat` for a conversation stream, `group` for a whole class. | chat |
| recipient_uuid | Yes | Chat stream uuid, or class uuid. |