Skip to main content
Glama

Update a user

sendbird_update_user
Destructive

MUTATES Sendbird data: partially updates a user's profile. Only provided fields change. Platform API: PUT /users/{user_id}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_idYesTarget user id (percent-encoded automatically).
nicknameNoNew display nickname.
profile_urlNoNew profile image URL.
issue_access_tokenNoIf true, issues a new access token for the user.

Schema Changelog

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

  1. First observed

TDQS

A4/5.0
Behavior3/5

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

The description reinforces the destructiveHint annotation by explicitly saying 'MUTATES' and adds the useful guarantee that only provided fields change. However, it does not disclose potential side effects such as what happens to the existing access token when issue_access_token is true. The annotation covers the general destructiveness, so this is adequate but not rich.

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 brief, front-loaded with the critical mutation warning, and contains no filler. Every sentence adds value: mutation intent, partial-update behavior, and the underlying API endpoint.

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 only four parameters, full schema coverage, and no nested objects, the description provides enough context to select and invoke the tool correctly. The missing return-shape information is minor for a mutation tool, and no output schema exists to compensate.

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 input schema already describes all four parameters, so the baseline is 3. The description adds meaningful parameter-related semantics by stating 'Only provided fields change', which clarifies how optional fields behave during the update. This goes slightly beyond what the schema's individual property descriptions express.

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 ('MUTATES', 'partially updates') and the resource ('a user's profile'), making the tool's purpose unambiguous. The partial-update framing and the explicit PUT endpoint differentiate it from sibling create/get/list tools even without naming them.

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 description implies when to use this tool: when the goal is to mutate an existing user's profile rather than create, read, or list users. It does not explicitly name alternatives or state when not to use it, so the guidance is implied rather than stated.

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.