Discord nodes
Tools for sending messages and media to Discord. These nodes are also served as MCP tools on the discord MCP server. Back to the full node reference.
Discord Send Media
discord_send_media · natural-language configurable · 3 credits on Cloud
Send a media file to a Discord channel.
Credential: Discord (API key)
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
channelId | string | ✓ | Discord channel identifier where the media will be sent. |
mediaUrls | array<string> | ✓ | List of media file URLs to upload to the channel. |
Output
Returns a list of records — reference fields downstream as $<node>.error.
| Field | Type | Description |
|---|---|---|
error | string | Error message if sending failed. |
messageId | string | Identifier of the Discord message that was created. |
status | boolean | Whether the media was sent successfully. |
Discord Send Message
discord_send_message · natural-language configurable · 3 credits on Cloud
Send a text message to a Discord channel.
Credential: Discord (API key)
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
channelId | string | ✓ | Discord channel identifier where the message will be sent. |
content | string | ✓ | Text content of the Discord message. |
Output
Returns a list of records — reference fields downstream as $<node>.messageId.
| Field | Type | Description |
|---|---|---|
messageId | string | Identifier of the Discord message that was created. |
status | boolean | Whether the message was sent successfully. |