discord_send_embed
Send a rich embed with title, description, fields, author, footer, images, and timestamp to a Discord channel. Requires Send Messages and Embed Links permissions.
Instructions
Send a single rich embed (title, description, color, fields, author, footer, images, timestamp). Use discord_send_message for plain text, or discord_send_multiple_embeds to send several embeds at once. Requires the Send Messages and Embed Links permissions. Returns the new message ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channel_id | Yes | ID (snowflake) of the target channel or thread. | |
| title | No | Embed title shown in bold at the top. | |
| url | No | URL that makes the title clickable. | |
| description | No | Main body text of the embed (supports Markdown). | |
| color | No | Side-bar color as a hex string, e.g. '#5865F2'. | |
| fields | No | Up to 25 name/value field blocks. Set inline:true on a field to render it side-by-side with adjacent inline fields (up to 3 per row). | |
| author | No | Author block shown at the top of the embed. | |
| thumbnail_url | No | Small image shown in the top-right corner. | |
| footer | No | Footer text shown at the bottom of the embed. | |
| image_url | No | Large image shown below the embed body. | |
| timestamp | No | If true, stamp the embed with the current time. |