Create Discord Channel
discord_create_channelCreate a new text, voice, category, or forum channel in a Discord server with customizable settings like topic, NSFW, bitrate, and forum layout.
Instructions
Create a new channel or category in a Discord server.
Args:
guild_id (string): Discord server/guild ID
name (string): Channel name
type ('text' | 'voice' | 'category' | 'forum'): Channel type (default: 'text')
topic (string, optional): Channel topic (text/forum channels only)
parent_id (string, optional): Category ID to create channel under (not for categories)
nsfw (boolean, optional): Whether the channel is NSFW (text/forum channels only)
bitrate (number, optional): Bitrate for voice channels (8000-384000)
user_limit (number, optional): User limit for voice channels (0 = unlimited)
default_reaction_emoji (string, optional): Default emoji for forum posts (emoji char or custom ID)
default_sort_order ('latest_activity' | 'creation_date', optional): Sort order for forum posts
default_forum_layout ('not_set' | 'list_view' | 'gallery_view', optional): Forum layout
available_tags (array, optional): Tags for forum posts (max 20)
name (string): Tag name (max 20 chars)
moderated (boolean, optional): Only mods can apply this tag
emoji_name (string, optional): Unicode emoji (e.g., '🎮')
emoji_id (string, optional): Custom emoji ID
Returns: The created channel's details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Channel name | |
| nsfw | No | Whether the channel is NSFW (text/forum channels only) | |
| type | No | Channel type: 'text', 'voice', 'category', or 'forum' | text |
| topic | No | Channel topic (text/forum channels only) | |
| bitrate | No | Bitrate for voice channels (8000-384000) | |
| guild_id | Yes | Discord server/guild ID (snowflake) | |
| parent_id | No | Category ID to create channel under (not for categories) | |
| user_limit | No | User limit for voice channels (0 = unlimited) | |
| available_tags | No | Available tags for forum posts (max 20 tags) | |
| default_sort_order | No | Default sort order for forum posts | |
| default_forum_layout | No | Default layout for forum channel | |
| default_reaction_emoji | No | Default reaction emoji for forum posts - use emoji character (e.g., '👍') or custom emoji ID |