mcp-discord

create_text_channel

Create a new text channel

Input Schema

NameRequiredDescriptionDefault
category_idNoOptional category ID to place channel in
nameYesChannel name
server_idYesDiscord server ID
topicNoOptional channel topic

Input Schema (JSON Schema)

{ "properties": { "category_id": { "description": "Optional category ID to place channel in", "type": "string" }, "name": { "description": "Channel name", "type": "string" }, "server_id": { "description": "Discord server ID", "type": "string" }, "topic": { "description": "Optional channel topic", "type": "string" } }, "required": [ "server_id", "name" ], "type": "object" }