Skip to main content

Create Text Channel

Snapshot Catalog Entry

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

POSTdiscord.create_text_channel

Execute discord.create_text_channel through the broker.

Request Body

{
"jsonrpc": "2.0",
"id": "discord-create-text-channel-example",
"method": "tools/call",
"params": {
"name": "discord.create_text_channel",
"arguments": {
"name": "name_example",
"guild_id": "guild_id_123",
"category_id": "category_id_123",
"confirm": "confirm_example"
}
}
}

Arguments Schema

{
"properties": {
"name": {
"type": "string"
},
"guild_id": {
"type": "string"
},
"category_id": {
"type": "string"
},
"confirm": {
"type": "string"
}
},
"required": [
"name"
],
"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-create-text-channel-example",
"method": "tools/call",
"params": {
"name": "discord.create_text_channel",
"arguments": {
"name": "name_example",
"guild_id": "guild_id_123",
"category_id": "category_id_123",
"confirm": "confirm_example"
}
}
}'

Example Responses

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