Skip to main content
Glama
cappyeo

discord-mcp

channels_create_guild_channel

Create a new channel in a Discord guild, supporting text, voice, category, announcement, and forum types. Ideal for programmatic server setup and tier-based channel provisioning.

Instructions

Purpose: Create a new channel in a guild (text, voice, category, announcement, forum, etc.).

When to use:

  • Programmatic guild bootstrap; tier-based channel provisioning.

When NOT to use:

  • Threads - use messages_create_thread, channels_forum_create_thread, or thread-specific tools.

Type values (from Discord API): 0 GUILD_TEXT, 2 GUILD_VOICE, 4 GUILD_CATEGORY, 5 GUILD_ANNOUNCEMENT, 13 GUILD_STAGE_VOICE, 14 GUILD_DIRECTORY, 15 GUILD_FORUM, 16 GUILD_MEDIA. Pick fields that match the type - extra fields are ignored by Discord.

Example: {guild_id:"…", name:"announcements", type:5, parent_id:"…"}

Returns: {id, name, type, parent_id}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesChannel name (1-100 chars)
nsfwNoMark as NSFW
typeNoDiscord channel type (omit for default GUILD_TEXT=0)
topicNoChannel topic (text/forum/announcement only)
bitrateNoVoice bitrate in bps (voice/stage)
guild_idYesTarget guild
positionNoSort position
parent_idNoCategory to nest under
rtc_regionNoVoice region override (voice/stage)
user_limitNoVoice user cap (0 = no limit)
audit_reasonNoReason recorded in audit log (X-Audit-Log-Reason header)
available_tagsNoForum tag set
default_sort_orderNoForum sort order (0 LATEST_ACTIVITY, 1 CREATION_DATE)
video_quality_modeNo1 AUTO, 2 FULL (voice/stage)
rate_limit_per_userNoSlowmode in seconds (0-21600)
default_forum_layoutNoForum layout (0 NOT_SET, 1 LIST_VIEW, 2 GALLERY_VIEW)
permission_overwritesNoPermission overwrites to seed at creation
default_reaction_emojiNoForum default reaction (emoji_id OR emoji_name)
default_auto_archive_durationNoDefault thread auto-archive (60/1440/4320/10080 minutes)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=false and destructiveHint=false, so the description doesn't need to restate that this is a write operation. The description adds valuable behavioral context beyond annotations: 'Pick fields that match the type - extra fields are ignored by Discord' and a concrete example illustrating usage. It stops short of describing permission requirements or failure modes, but with annotation coverage this is sufficient.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact yet well-structured, using bolded mini-headings (Purpose, When to use, When NOT to use, Type values, Example, Returns). Every sentence serves a purpose: defining scope, giving usage context, listing type enums, demonstrating usage, and summarizing output. No filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 19 parameters, nested objects, and an output schema, the description provides comprehensive context: purpose, type values, exclusions, an example, and a return summary. It fully addresses the agent's need to decide when and how to use the tool, with the schema handling detailed parameter semantics. No significant gaps remain for effective invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, which sets a baseline of 3. The description goes beyond the schema by explaining Discord channel type values (0-16), noting that type-specific fields should be chosen and extra fields are ignored, and providing an example that ties guild_id, name, type, and parent_id together. This adds meaning beyond raw schema definitions, though it doesn't elaborate on every parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'Create a new channel in a guild (text, voice, category, announcement, forum, etc.)', which is a specific verb+resource that immediately conveys the tool's function. It also distinguishes from thread creation by explicitly referencing alternative tools for threads, making its scope clear relative to siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit when-to-use guidance ('Programmatic guild bootstrap; tier-based channel provisioning') and a clear when-NOT-to-use with named alternatives ('Threads - use `messages_create_thread`, `channels_forum_create_thread`, or thread-specific tools'). This is precisely the kind of contextual guidance that helps an agent select the right tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/cappyeo/discord-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server