Skip to main content
Glama
bcharleson

Slack MCP Server

create_channel

Create new Slack channels for team collaboration, with options for public or private visibility to organize workspace communication.

Instructions

    Create a new Slack channel.

    Args:
        name: Name for the new channel (max 80 chars, lowercase,
              no spaces, use hyphens instead)
        is_private: Whether to create a private channel. Default: False

    Returns:
        Dictionary containing the created channel's details
    

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
is_privateNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions the action ('Create a new Slack channel') and return type ('Dictionary containing the created channel's details'), but lacks details on permissions needed, rate limits, error conditions, or whether the operation is idempotent. This is a significant gap for a mutation tool.

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 appropriately sized and front-loaded: the first sentence states the purpose clearly, followed by structured 'Args' and 'Returns' sections. Every sentence adds value without redundancy, making it efficient and easy to parse.

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

Completeness4/5

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

Given the tool's moderate complexity (2 parameters, mutation operation) and the presence of an output schema (which handles return values), the description is fairly complete. It covers parameter semantics well but lacks behavioral context like permissions or error handling, which is partially mitigated by the output 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?

The description adds meaningful semantics beyond the input schema, which has 0% coverage. It explains that 'name' has constraints (max 80 chars, lowercase, no spaces, use hyphens) and clarifies 'is_private' as 'Whether to create a private channel' with a default value. This compensates well for the schema's lack of descriptions.

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 the verb ('Create') and resource ('new Slack channel'), making the purpose specific and unambiguous. It distinguishes this tool from siblings like 'archive_channel', 'join_channel', or 'set_channel_topic' by focusing on creation rather than modification or querying.

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 guidance is provided on when to use this tool versus alternatives. For example, it doesn't mention whether to use this for public vs. private channels in relation to other tools like 'list_channels' or 'open_dm', nor does it specify prerequisites (e.g., required permissions or workspace context).

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/bcharleson/slack-mcp-server'

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