Skip to main content

Send Message

Catalog + Curated

This page is generated from the full broker catalog and enhanced with curated examples.

POSTdiscord.send_message

Post messages or embeds to channels and threads.

Request Body

{
"jsonrpc": "2.0",
"id": "discord-send-message-example",
"method": "tools/call",
"params": {
"name": "discord.send_message",
"arguments": {
"channel_id": "123456789",
"message": "Release 2.7 is now live.",
"embed_title": "Release Update",
"embed_description": "Patch notes are in #announcements"
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"channel_id",
"message"
],
"properties": {
"channel_id": {
"type": "string"
},
"message": {
"type": "string"
},
"embed_title": {
"type": "string"
},
"embed_description": {
"type": "string"
}
},
"additionalProperties": false
}

Code Examples

curl -X POST 'https://madpanda3d.com/lab/mad-mcps/portal/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "discord-send-message-example",
"method": "tools/call",
"params": {
"name": "discord.send_message",
"arguments": {
"channel_id": "123456789",
"message": "Release 2.7 is now live.",
"embed_title": "Release Update",
"embed_description": "Patch notes are in #announcements"
}
}
}'

Example Responses

{
"ok": true,
"message_id": "1122334455"
}