Skip to main content
Glama

Raw GET request

sendbird_request
Read-only

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 Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesAPI path beginning with "/", relative to the /v3 base (e.g. "/users/alex%40x.com/blocked_users").
paramsNoOptional JSON object (as a string) of query params, e.g. '{"limit":50}'.

Schema Changelog

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

  1. First observed

TDQS

A3.9/5.0
Behavior3/5

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

readOnlyHint: true already covers the safety profile; on top of it the description adds the "GET only" method restriction and the raw-passthrough nature. It omits behavior on errors, rate limits, and response passthrough, but with the annotation handling the critical read-only trait this is adequate, not rich. No contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two tight sentences with purpose front-loaded; the examples compress a lot of meaning into few words. The redundant "READ-ONLY" label duplicates the annotation slightly, but the text is otherwise all signal and correctly ordered: purpose, then constraints, then mechanics.

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 2-param raw-passthrough tool with a read-only annotation and no output schema, the description covers what, when-not, and safety. Documenting return values would be near-meaningless for arbitrary unwrapped paths since output is whatever the Sendbird API returns, so that gap is acceptable. Minor omission: error or rate-limit behavior, low-value for an escape hatch.

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 coverage is 100% with detailed, well-exampled descriptions for both path (including a URL-encoding example) and params. The description's "Platform API: GET {path}" merely echoes that, adding no semantic value beyond the schema. Baseline 3 applies.

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?

States a specific verb ("issue a raw GET") against a specific resource class ("any Chat Platform API v3 path not wrapped by a dedicated tool") and positions itself as a power-user escape hatch. The concrete examples (/report, /applications/settings_global) make the scope unmistakable and separate it from the dedicated sibling tools.

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

Usage Guidelines4/5

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

"Not wrapped by a dedicated tool" is an explicit when-not condition that steers the agent to siblings when they cover the path, and "Power-user escape hatch" signals fallback status. It does not name specific sibling alternatives or phrase the preference directive, but the exclusion is clear enough.

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.