Skip to main content

Ack

Snapshot Catalog Entry

This page is generated from broker tools/list snapshot data.

POSTdiscord.discord_ack

Execute discord.discord_ack through the broker.

Request Body

{
"jsonrpc": "2.0",
"id": "discord-discord-ack-example",
"method": "tools/call",
"params": {
"name": "discord.discord_ack",
"arguments": {
"channel_id": "channel_id_123",
"message": "message_example",
"include_timestamp": "",
"confirm": "confirm_example"
}
}
}

Arguments Schema

{
"properties": {
"channel_id": {
"type": "string"
},
"message": {
"type": "string"
},
"include_timestamp": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "string"
}
]
},
"confirm": {
"type": "string"
}
},
"type": "object"
}

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-discord-ack-example",
"method": "tools/call",
"params": {
"name": "discord.discord_ack",
"arguments": {
"channel_id": "channel_id_123",
"message": "message_example",
"include_timestamp": "",
"confirm": "confirm_example"
}
}
}'

Example Responses

{
"ok": true,
"message": "Tool discord.discord_ack executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}