Skip to main content
Glama

sbis_get_raw

Read-only

Retrieve data from any SBIS API endpoint by path, including uncataloged ones. Uses safe HTTP verbs (GET, HEAD, OPTIONS) to read resources without changes.

Instructions

Read ANY endpoint by path, including ones missing from the catalog.

Target API: https://saby.ru/help/integration/api.

Safe verbs only (GET, HEAD, OPTIONS). To change data use sbis_write_raw, to delete use sbis_delete_raw.

Args: path: full path beginning with '/', e.g. "/". method: safe verb, GET by default. host: host override; defaults to the service's default host. query: query-string parameters. body: JSON request body (rare on reads; some APIs want one). Returns JSON: {"ok": true, "status", "data"} or the error envelope.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNo
hostNo
pathYes
queryNo
methodNoGET

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.3.0

TDQS

A4.7/5.0
Behavior4/5

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

Annotations indicate readOnlyHint and openWorldHint, and the description aligns by stating safe verbs and read-only purpose. It adds valuable context about the host override, query parameters, and the response envelope format, which are not fully covered by annotations. Since the description does not contradict annotations and provides useful behavioral details, a 4 is appropriate.

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 compact but information-dense, with clear sections for purpose, API reference, verb constraints, argument explanations, and return format. It front-loads the core purpose and distinguishes from siblings early. Every sentence contributes, with no fluff.

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

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (raw access with 5 parameters) and the presence of an output schema, the description is complete: it explains the path, method, host, query, body, and return envelope/formats. It also addresses edge cases (missing catalog endpoints, body on reads) and provides the API reference for further context, making it fully sufficient for correct invocation.

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?

Schema coverage is 0%, so the description compensates well by explaining each parameter's purpose: path is the full path, method is the safe verb with GET default, host is an override, query is query-string parameters, and body is rare but possible. This adds meaning beyond the bare schema, though it could be slightly more explicit about the format of 'query' (e.g., as an object vs string).

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 tool reads ANY endpoint by path, explicitly including ones missing from the catalog. It specifies the target API and the safe verbs allowed, distinguishing it from sibling tools that write or delete. The mention of 'raw' and 'path' makes its role unmistakable.

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

Usage Guidelines5/5

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

The description explicitly says to use sbis_write_raw for changes and sbis_delete_raw for deletions, providing clear exclusions and alternatives. It also specifies safe verbs (GET, HEAD, OPTIONS) and notes that some reads may require a body, guiding the agent on when and how to use the tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.