Skip to main content
Glama

Create a user

sendbird_create_user
Destructive

MUTATES Sendbird data: creates a new user. Platform API: POST /users.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_idYesUnique user id to create.
metadataNoArbitrary key/value metadata object stored on the user.
nicknameNoDisplay nickname.
profile_urlNoProfile image URL (may be empty).
issue_access_tokenNoIf true, issues an access token for the user in the response.

Schema Changelog

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

  1. First observed

TDQS

B3.4/5.0
Behavior2/5

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

Annotations already declare destructiveHint=true, and the description's 'MUTATES' merely restates that in words. It adds no new behavioral context beyond the annotation, such as error behavior, idempotency, permission requirements, or side effects. Since the description does not enrich the annotation, it falls short.

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 just two sentences with zero filler. The core operation is front-loaded ('MUTATES Sendbird data: creates a new user'), followed by the API endpoint. Every word earns its place, making it highly efficient for an agent to parse.

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

Completeness2/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 does not explain what the response contains (e.g., created user object, access token when requested), nor does it address failure cases like duplicate user_id conflicts. The description plus schema and annotation are enough to make the call, but missing operational details reduce completeness for a mutation tool.

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% — all five parameters (user_id, metadata, nickname, profile_url, issue_access_token) are fully documented in the input schema. The description adds no parameter-specific meaning, so a baseline of 3 is appropriate given the schema already does the heavy lifting.

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 ('creates') and resource ('a new user'), plus the exact API endpoint 'POST /users'. This clearly distinguishes it from read-only siblings like sendbird_get_user and sendbird_list_users, and from sendbird_update_user. The title and name further reinforce the intent.

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 usage is implied by the verb 'creates' — an agent can infer this is the tool for making a new user. However, there is no explicit guidance about when not to use it, what to do if the user already exists, or how it relates to sendbird_update_user as an alternative. The description provides no exclusions or conditional routing.

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.