# io.usefulapi/sendbird (remote · sendbird.usefulapi.io)

MCP server for Sendbird — chat users, channels, members, and messages from your AI client.

- Trust score: 18/100 (low)
- Change this week: −49
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `sendbird.usefulapi.io`: 18/100 (this document), [markdown](https://verifymcp.io/servers/io-usefulapi-sendbird/sendbird.md), [page](https://verifymcp.io/servers/io-usefulapi-sendbird/sendbird)

## Channel facts

- Endpoint: `https://sendbird.usefulapi.io/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.1`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 46/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to connect, but we couldn't read the tool list to see what that exposes.
  - HTTPS not yet verified: we couldn't determine whether a plaintext access path exists.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 0/100
  - Transport check failed: declared streamable-http, but the endpoint returned HTTP 429.
- **Schema Quality & AI Usability**: 0/100
  - Schema not yet verified: we couldn't read the endpoint's schema.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 0/100
  - Tool coverage not yet verified: we couldn't read the endpoint's tools.
- **Capabilities**: 0/100
  - Capabilities not yet verified: we couldn't read the endpoint's capabilities.

**Unverified: 4 categories.** Categories scored 0 because we could not verify them: authentication we do not have, an unreachable endpoint, or not enough scan history. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add --transport http io-usefulapi-sendbird https://sendbird.usefulapi.io/mcp
```

### Codex

```toml
[mcp_servers.io-usefulapi-sendbird]
url = "https://sendbird.usefulapi.io/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "io-usefulapi-sendbird": {
      "type": "remote",
      "url": "https://sendbird.usefulapi.io/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add io-usefulapi-sendbird --url https://sendbird.usefulapi.io/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  io-usefulapi-sendbird:
    url: "https://sendbird.usefulapi.io/mcp"
```

### Other

```json
{
  "mcpServers": {
    "io-usefulapi-sendbird": {
      "type": "http",
      "url": "https://sendbird.usefulapi.io/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 18, −53)

- [security regression] Endpoint reachability: reachable → not serving MCP
- [security regression] Authorization: pass → unverified
- [security regression] Stability: 0.20 → unverified
- [security regression] Transport: pass → fail
- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Capabilities: fail → unverified

### 2026-08-02 (score 71, +53)

- [security improvement] Authorization: unverified → pass
- [security improvement] Transport: fail → pass
- [functional regression] MCP protocol: unverified → fail
- [functional improvement] Endpoint reachability: not serving MCP → reachable
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] Stability: unverified → 0.20

### 2026-08-01 (score 18, −52)

- [security regression] Endpoint reachability: reachable → not serving MCP
- [security regression] Stability: 0.13 → unverified
- [security regression] Authorization: pass → unverified
- [security regression] Transport: pass → fail
- [functional regression] Capabilities: fail → unverified
- [functional regression] Tool coverage: 100 → unverified

### 2026-07-31 (score 70, +3)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 67, −2)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-29 (score 69, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-28 (score 68, +1)

- [functional improvement] Stability: unverified → 0.03

### 2026-07-27 (score 67, +55)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

## MCP tools (14)

### `sendbird_list_users` (~189 tokens)

List users

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

Input parameters:

- `active_mode` (string): Filter by activation state. Default activated.
- `limit` (integer): Page size, 1-100. Default 10.
- `metadatakey` (string): Metadata key to filter on (pair with metadatavalues_in).
- `metadatavalues_in` (string): Comma-separated metadata values matching metadatakey.
- `nickname` (string): Exact nickname match.
- `nickname_startswith` (string): Prefix match on nickname.
- `show_bot` (boolean): Include bot users. Default true.
- `token` (string): Pagination token from a previous response's `next`.
- `user_ids` (string): Comma-separated user ids to fetch specific users.

### `sendbird_get_user` (~98 tokens)

Get a user

Fetch a single user by user_id. Platform API: GET /users/{user_id}.

Input parameters:

- `custom_types` (string): Comma-separated channel custom types to scope the unread count.
- `include_unread_count` (boolean): Include the user's total unread message count.
- `super_mode` (string): Scope unread count by Supergroup vs. group channels.
- `user_id` (string, required): Target user id (percent-encoded automatically).

### `sendbird_list_group_channels` (~223 tokens)

List group channels

List group channels in the application, with rich filtering (name, members, distinct/public/super mode). Platform API: GET /group_channels. Returns { channels[], next }.

Input parameters:

- `custom_types` (string): Comma-separated channel custom types to filter on.
- `distinct_mode` (string): Filter by distinct flag. Default all.
- `limit` (integer): Page size, 1-100. Default 10.
- `members_include_in` (string): Comma-separated user ids; returns channels including any of them.
- `name_contains` (string): Substring match on channel name.
- `order` (string): Sort order. Default chronological.
- `public_mode` (string): Filter by public/private. Default all.
- `show_frozen` (boolean): Include frozen channels. Default true.
- `show_member` (boolean): Include the member list in each channel.
- `super_mode` (string): Filter by Supergroup vs. group. Default all.
- `token` (string): Pagination token from a previous response's `next`.

### `sendbird_get_group_channel` (~94 tokens)

Get a group channel

Fetch a single group channel by URL, optionally with members and receipts. Platform API: GET /group_channels/{channel_url}.

Input parameters:

- `channel_url` (string, required): Group channel URL (percent-encoded automatically).
- `show_delivery_receipt` (boolean): Include per-member delivery receipts.
- `show_member` (boolean): Include the member list.
- `show_read_receipt` (boolean): Include per-member read receipts.

### `sendbird_list_group_channel_members` (~174 tokens)

List group channel members

List the members of a group channel. Platform API: GET /group_channels/{channel_url}/members. Returns { members[], next }.

Input parameters:

- `channel_url` (string, required): Group channel URL (percent-encoded automatically).
- `limit` (integer): Page size, 1-100. Default 10.
- `member_state_filter` (string): Filter by invitation/join state (e.g. joined, invited, invited_by_friend).
- `operator_filter` (string): Filter by operator status. Default all.
- `order` (string): Sort order of members.
- `show_delivery_receipt` (boolean): Include each member's delivery receipt.
- `show_read_receipt` (boolean): Include each member's read receipt.
- `token` (string): Pagination token from a previous response's `next`.

### `sendbird_list_group_channels_by_user` (~192 tokens)

List a user's group channels

List the group channels a given user belongs to. Platform API: GET /users/{user_id}/my_group_channels. Returns { channels[], next }.

Input parameters:

- `custom_types` (string): Comma-separated channel custom types to filter on.
- `distinct_mode` (string): Filter by distinct flag. Default all.
- `hidden_mode` (string): Filter by hidden state (e.g. unhidden_only, hidden_only, all).
- `limit` (integer): Page size, 1-100. Default 10.
- `order` (string): Sort order. Default chronological.
- `public_mode` (string): Filter by public/private. Default all.
- `show_member` (boolean): Include the member list in each channel.
- `token` (string): Pagination token from a previous response's `next`.
- `user_id` (string, required): Target user id (percent-encoded automatically).

### `sendbird_list_open_channels` (~115 tokens)

List open channels

List open (public, participant-based) channels. Platform API: GET /open_channels. Returns { channels[], next }.

Input parameters:

- `custom_types` (string): Comma-separated channel custom types to filter on.
- `limit` (integer): Page size, 1-100. Default 10.
- `name_contains` (string): Substring match on channel name.
- `token` (string): Pagination token from a previous response's `next`.
- `url_contains` (string): Substring match on channel URL.

### `sendbird_get_open_channel` (~59 tokens)

Get an open channel

Fetch a single open channel by URL. Platform API: GET /open_channels/{channel_url}.

Input parameters:

- `channel_url` (string, required): Open channel URL (percent-encoded automatically).
- `participants_count` (boolean): Include the current participant count.

### `sendbird_list_messages` (~254 tokens)

List messages

List messages in a channel, anchored at a timestamp or message id. Provide EITHER message_ts (unix ms) OR message_id. Platform API: GET /{channel_type}/{channel_url}/messages. Returns { messages[] }.

Input parameters:

- `channel_type` (string, required): Channel type: group_channels (member-based) or open_channels (public, participant-based).
- `channel_url` (string, required): Channel URL (percent-encoded automatically).
- `custom_types` (string): Comma-separated message custom types to filter on.
- `include` (boolean): Include the anchor message itself.
- `message_id` (integer): Anchor message id. Provide this OR message_ts.
- `message_ts` (integer): Anchor timestamp in unix milliseconds. Provide this OR message_id.
- `message_type` (string): Filter by message type: MESG (text), FILE, or ADMM (admin).
- `next_limit` (integer): Number of messages after the anchor, 0-200.
- `prev_limit` (integer): Number of messages before the anchor, 0-200.
- `reverse` (boolean): Return in reverse chronological order.
- `user_ids` (string): Comma-separated sender user ids to filter on.

### `sendbird_request` (~129 tokens)

Raw GET request

Power-user escape hatch: issue a raw GET to any Chat Platform API v3 path not wrapped by a dedicated tool (e.g. /group_channels/{url}/messages/{id}, /report, /applications/settings_global). READ-ONLY — GET only. Platform API: GET {path}.

Input parameters:

- `params` (string): Optional JSON object (as a string) of query params, e.g. '{"limit":50}'.
- `path` (string, required): API path beginning with "/", relative to the /v3 base (e.g. "/users/alex%40x.com/blocked_users").

### `sendbird_send_message` (~257 tokens)

Send a message

MUTATES Sendbird data: sends a message into a channel as a user (MESG) or as an admin (ADMM). File/multipart messages are not supported. Platform API: POST /{channel_type}/{channel_url}/messages.

Input parameters:

- `channel_type` (string, required): Channel type: group_channels (member-based) or open_channels (public, participant-based).
- `channel_url` (string, required): Channel URL (percent-encoded automatically).
- `custom_type` (string): Custom type tag for the message.
- `data` (string): Additional structured data as a string (often JSON).
- `is_silent` (boolean): If true, does not update channel's last message / unread counts.
- `mention_type` (string): Mention scope: specific users or the whole channel.
- `mentioned_user_ids` (array): User ids to mention (when mention_type=users).
- `message` (string, required): The message text.
- `message_type` (string): MESG (user text, default) or ADMM (admin message, no sender).
- `send_push` (boolean): Whether to send push notifications. Default true.
- `user_id` (string): Sender user id. REQUIRED when message_type is MESG.

### `sendbird_create_user` (~104 tokens)

Create a user

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

Input parameters:

- `issue_access_token` (boolean): If true, issues an access token for the user in the response.
- `metadata` (object): Arbitrary key/value metadata object stored on the user.
- `nickname` (string): Display nickname.
- `profile_url` (string): Profile image URL (may be empty).
- `user_id` (string, required): Unique user id to create.

### `sendbird_update_user` (~95 tokens)

Update a user

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

Input parameters:

- `issue_access_token` (boolean): If true, issues a new access token for the user.
- `nickname` (string): New display nickname.
- `profile_url` (string): New profile image URL.
- `user_id` (string, required): Target user id (percent-encoded automatically).

### `sendbird_create_group_channel` (~164 tokens)

Create a group channel

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

Input parameters:

- `channel_url` (string): Custom channel URL; auto-generated if omitted.
- `cover_url` (string): Channel cover image URL.
- `custom_type` (string): Custom type tag for the channel.
- `data` (string): Additional structured data as a string (often JSON).
- `is_distinct` (boolean): If true, reuse an existing channel with the same members instead of creating a duplicate.
- `is_public` (boolean): If true, the channel is public (joinable without invitation).
- `name` (string): Channel name.
- `user_ids` (array, required): User ids to add as members of the new channel.

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/io-usefulapi-sendbird/sendbird#diagnostics

## Score history

- 2026-08-03: 18
- 2026-08-02: 71
- 2026-08-01: 18
- 2026-07-31: 70
- 2026-07-30: 67
- 2026-07-29: 69
- 2026-07-28: 68
- 2026-07-27: 67
- 2026-07-26: 12

## Links

- Remote endpoint: https://sendbird.usefulapi.io/mcp
- Repository: https://github.com/m190/usefulapi-mcp
- Changelog RSS feed: https://verifymcp.io/servers/io-usefulapi-sendbird/sendbird/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/io-usefulapi-sendbird/sendbird/changelog.json
- HTML version of this page: https://verifymcp.io/servers/io-usefulapi-sendbird/sendbird
