discord_create_text_channel
Create a new text channel in a Discord server, specifying the channel name and optional topic, to organize conversations effectively.
Instructions
Creates a new text channel in a Discord server with an optional topic
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channelName | Yes | ||
guildId | Yes | ||
topic | No |
Input Schema (JSON Schema)
{
"properties": {
"channelName": {
"type": "string"
},
"guildId": {
"type": "string"
},
"topic": {
"type": "string"
}
},
"required": [
"guildId",
"channelName"
],
"type": "object"
}