Skip to main content
Glama

List users

sendbird_list_users
Read-only

List the users in the application. Supports filtering by activity, nickname, ids, and metadata. Platform API: GET /users. Returns { users[], next }.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1-100. Default 10.
tokenNoPagination token from a previous response's `next`.
nicknameNoExact nickname match.
show_botNoInclude bot users. Default true.
user_idsNoComma-separated user ids to fetch specific users.
active_modeNoFilter by activation state. Default activated.
metadatakeyNoMetadata key to filter on (pair with metadatavalues_in).
metadatavalues_inNoComma-separated metadata values matching metadatakey.
nickname_startswithNoPrefix match on nickname.

Schema Changelog

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

  1. First observed

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description reinforces this by naming the Platform API as GET /users and documenting the return shape as { users[], next }. This adds useful pagination context beyond the annotation without contradicting it, though it does not discuss rate limits or authentication.

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 three tight sentences: the first states the action and resource, the second summarizes filtering options, and the third gives the API endpoint and return shape. There is no filler, redundant restatement of the title, or unnecessary detail.

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 a read-only list tool with nine parameters and no output schema, the description gives the essential response shape ({ users[], next }) and confirms the safe GET nature of the operation. All parameters are documented in the schema, so the description covers the remaining high-level context well. It could have added explicit sibling routing guidance, but the core information needed to call the tool is present.

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 the schema fully documents all nine parameters, including defaults and pairings like metadatakey with metadatavalues_in. The description adds only a high-level grouping of filter categories, which is useful but does not provide additional semantic detail 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 states a specific verb and resource: 'List the users in the application,' and names the supported filter dimensions (activity, nickname, ids, metadata). This clearly distinguishes it from single-user tools like sendbird_get_user and from list tools for other resources.

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 its usage as the bulk listing tool for users, and the sibling names suggest alternatives like sendbird_get_user for individual retrieval. However, it never explicitly states when to use this over the alternatives or when not to use it, leaving the guidance at the implied level.

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.