Skip to main content
Glama

Create a group channel

sendbird_create_group_channel
Destructive

MUTATES Sendbird data: creates a group channel with the given members. Platform API: POST /group_channels.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNoAdditional structured data as a string (often JSON).
nameNoChannel name.
user_idsYesUser ids to add as members of the new channel.
cover_urlNoChannel cover image URL.
is_publicNoIf true, the channel is public (joinable without invitation).
channel_urlNoCustom channel URL; auto-generated if omitted.
custom_typeNoCustom type tag for the channel.
is_distinctNoIf true, reuse an existing channel with the same members instead of creating a duplicate.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.8/5.0
Behavior3/5

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

The description explicitly flags the operation as 'MUTATES Sendbird data' and provides the REST endpoint, which adds useful context. Since the annotations already include destructiveHint: true, the mutation warning is partly redundant, but the description does not contradict the annotations. It does not disclose additional side effects, such as distinct-channel reuse behavior or permissions.

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 sentence that front-loads the most important safety signal ('MUTATES'), clearly states the action, and includes the API endpoint. Every part earns its place with no wasted words.

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?

For an 8-parameter creation tool with 100% schema coverage and a destructiveHint annotation, the description provides the essential framing: mutation, target resource, and API endpoint. It does not describe return values, but no output schema is present, and the operation is straightforward enough that the missing return details are a minor gap.

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?

Schema description coverage is 100%, so every parameter is already documented in the input schema. The description adds only a general reference to 'given members,' which maps to user_ids, but it does not provide additional semantic value beyond the schema.

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 uses a specific verb and resource: 'creates a group channel with the given members.' It also names the exact Platform API endpoint, which makes the operation unambiguous. This clearly distinguishes it from sibling tools like sendbird_create_user, sendbird_get_group_channel, or sendbird_send_message.

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

Usage Guidelines3/5

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

The intended use is implied by the description: use this when you need to create a new group channel with specified members. However, it provides no explicit when-to-use versus alternatives, no exclusions, and no mention of related tools such as sendbird_list_group_channels for finding existing channels.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4/5.0
Disambiguation5/5

Each tool maps to a distinct resource-action pair (users, group/open channels, members, messages), and the get/list/create/update/send verbs keep boundaries clear. The raw GET escape hatch is explicitly limited to unwrapped paths, so it does not create meaningful overlap.

Naming Consistency5/5

All tools follow the predictable sendbird_<verb>_<resource> snake_case pattern, with consistent verbs like create, get, list, update, and send. The generic sendbird_request is a deliberate exception rather than a naming inconsistency.

Tool Count5/5

14 tools is within the ideal range and each tool covers a coherent piece of Sendbird's chat platform: users, channels, members, messages, and a raw GET fallback. There are no redundant or filler tools.

Completeness3/5

The set covers common read/list flows and some mutations, but lifecycle coverage has notable gaps: group channels can be created and read but not updated/deleted, messages can be sent and listed but not updated/deleted, and users have no delete operation. The raw GET tool is read-only and cannot compensate for these missing write operations.