mcp-discord
by hanweg
create_text_channel
Create a new text channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category_id | No | Optional category ID to place channel in | |
name | Yes | Channel name | |
server_id | Yes | Discord server ID | |
topic | No | Optional 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"
}