Skip to main content
Glama
Oratorian

Discord MCP Server

by Oratorian

Edit Discord Channel

discord_edit_channel
Idempotent

Edit a Discord channel's properties such as name, topic, category, position, NSFW flag, forum tags, and voice channel bitrate or user limit.

Instructions

Edit a channel's properties including name, topic, category, position, and more.

Args:

  • channel_id (string): Discord channel ID

  • name (string, optional): New channel name

  • topic (string, optional): New channel topic

  • parent_id (string, optional): Move to a different category (or 'none' to remove from category)

  • position (number, optional): New position of the channel

  • nsfw (boolean, optional): Whether the channel is NSFW

  • bitrate (number, optional): Bitrate for voice channels (8000-384000)

  • user_limit (number, optional): User limit for voice channels

  • default_reaction_emoji (string, optional): Default emoji for forum posts (emoji char or custom ID, 'none' to remove)

  • 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) WARNING: This REPLACES all existing tags! To keep existing tags, first use discord_get_channel to get current tags with their IDs, then include them in this array with their id field.

    • id (string): Tag ID - REQUIRED to preserve existing tags, omit only for new tags

    • 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: Updated channel details

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoNew channel name
nsfwNoWhether the channel is NSFW
topicNoNew channel topic
bitrateNoBitrate for voice channels
positionNoNew position of the channel
parent_idNoMove channel to a different category (use 'none' to remove from category)
channel_idYesDiscord channel ID (snowflake)
user_limitNoUser limit for voice channels
available_tagsNoAvailable tags for forum posts (max 20 tags)
default_sort_orderNoDefault sort order for forum posts
default_forum_layoutNoDefault layout for forum channel
default_reaction_emojiNoDefault reaction emoji for forum posts - use emoji character (e.g., '👍') or custom emoji ID, use 'none' to remove
Behavior4/5

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

Annotations indicate idempotentHint=true (repeatable) and destructiveHint=false, which the description implicitly supports. It adds critical behavioral context: 'WARNING: This REPLACES all existing tags! To keep existing tags, first use discord_get_channel...' This disclosure goes beyond the schema and annotations, though other side effects (e.g., permission requirements, channel type constraints) are not mentioned.

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

Conciseness4/5

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

The description is well-structured with clear 'Args' and 'Returns' sections. The first sentence establishes purpose immediately. While the available_tags section is verbose, it is justified given the complexity of that parameter. Overall, it is appropriately sized and front-loaded.

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

Completeness3/5

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

The description adequately covers the tool's behavior given the rich schema (100% parameter coverage) and annotations. However, without an output schema, the return value is vaguely described as 'Updated channel details.' It lacks guidance on which parameters apply to which channel types (e.g., bitrate only for voice) and does not mention error handling or validation constraints beyond schema.

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% with clear descriptions, so baseline is 3. The description adds substantial value beyond the schema by explaining nuanced usage, such as 'use 'none' to remove' on parent_id and default_reaction_emoji, and the detailed warning about tag replacement with sub-property explanations. This compensates for the baseline.

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 clearly states 'Edit a channel's properties including name, topic, category, position, and more.' This uses a specific verb ('Edit') and resource ('channel's properties'), and lists concrete examples. It differentiates from sibling edit tools like discord_edit_message or discord_edit_role by focusing on channel properties.

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

Usage Guidelines2/5

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

The description only lists parameters but provides no guidance on when to use this tool versus alternatives. For example, it doesn't mention situations where editing channel properties is appropriate versus using other tools like discord_set_channel_permissions or discord_move_member. No explicit when/when-not reasoning is given.

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/Oratorian/discord-node-mcp'

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