discord_send_message
Send messages to Discord channels with text, embeds, replies, and mention controls. Use this tool to post content and manage communication in Discord servers programmatically.
Instructions
Send a new message to a Discord channel. Supports plain text, embeds, replies, and allowed_mentions control. Returns the created message object including its ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channel_id | Yes | Snowflake ID of the target channel. | |
| content | No | Message text (up to 2000 chars). Either content or embeds is required. | |
| embeds | No | Array of Discord embed objects (up to 10). Each embed is a rich card with title, description, fields, color, etc. | |
| reply_to_message_id | No | Optional — reply to this message ID. The message must be in the same channel. | |
| allowed_mentions | No | Control which mentions actually ping. E.g. {"parse": ["users"]} to allow user pings but suppress @everyone. | |
| suppress_embeds | No | If true, no link previews are auto-generated. |