Skip to main content
Glama

discord_create_text_channel

Create a new text channel in a

Instructions

Creates a new text channel in a Discord server with an optional topic and parent category

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
topicNo
guildIdYes
categoryIdNoParent category ID to place the channel under
channelNameYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.5.0
    • addedInput schema / properties / categoryId
      Added value: +{
      +  "description": "Parent category ID to place the channel under",
      +  "type": "string"
      +}
  2. First observedv1.0.0

TDQS

A3.5/5.0
Behavior3/5

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

The description covers the creation action and optional fields, but lacks details about required permissions, effects on existing channels, or behavior on failure. With no annotations, the description carries the full burden but falls short of full transparency.

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 a single, concise sentence with no redundant content. It efficiently communicates the core action and optional parameters.

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?

With no output schema, the description need not explain return values, but it omits potential side effects, permission requirements, and error conditions. For a simple create operation, it is adequate but not fully complete.

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

Parameters3/5

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

Only categoryId has a schema description. The description mentions 'topic' and 'parent category' but does not clarify guildId or channelName (though channelName is inferable). Schema coverage is 25%, so the description adds some value but leaves gaps.

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 a specific verb ('creates'), resource ('text channel in a Discord server'), and includes optional parameters ('topic and parent category'). It distinguishes itself from sibling tools like create_voice_channel and create_forum_channel.

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?

No explicit guidance is given on when to use this tool versus alternatives such as create_voice_channel or create_category. The description only describes the action without contextual use cases.

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