Skip to main content

Delete Channel

Snapshot Catalog Entry

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

POSTdiscord.delete_channel

Execute discord.delete_channel through the broker.

Request Body

{
"jsonrpc": "2.0",
"id": "discord-delete-channel-example",
"method": "tools/call",
"params": {
"name": "discord.delete_channel",
"arguments": {
"channel_id": "channel_id_123",
"guild_id": "guild_id_123",
"confirm": "confirm_example"
}
}
}

Arguments Schema

{
"properties": {
"channel_id": {
"type": "string"
},
"guild_id": {
"type": "string"
},
"confirm": {
"type": "string"
}
},
"required": [
"channel_id"
],
"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-delete-channel-example",
"method": "tools/call",
"params": {
"name": "discord.delete_channel",
"arguments": {
"channel_id": "channel_id_123",
"guild_id": "guild_id_123",
"confirm": "confirm_example"
}
}
}'

Example Responses

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