Skip to main content
Glama
ilyautov

marketplaces-mcp-ru

ym_get_raw

Read-only

Fetch data from any Yandex Market Partner API endpoint by specifying the path, including undocumented ones, via safe GET, HEAD, or OPTIONS requests. Returns JSON with status and data.

Instructions

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

Target API: https://yandex.ru/dev/market/partner-api/doc/ru/.

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

Args: path: full path beginning with '/', e.g. "/v2/regions". 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.6.1

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, so the safety profile is known. The description adds value beyond that: it restricts verbs to GET, HEAD, OPTIONS, explains the return envelope ({"ok": true, "status", "data"} or error), and notes that body is rare but sometimes needed. It does not mention auth or rate limits, but those are likely handled by the service layer. No contradiction with annotations.

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?

The description is well-structured: a one-sentence purpose, a target API reference, safety constraints and sibling pointers, then a clean args list with defaults and examples. It is a bit long but every part earns its place. The most important scoping information (read any endpoint) is front-loaded. No redundant repetition of schema fields.

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?

For a generic raw-read tool, this description is complete. It covers purpose, usage boundaries, all parameter semantics, return format, and error envelope. It even notes the rare body case. With annotations covering read-only and open-world behavior, and an output schema present, nothing essential is missing for an agent to call it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must fully explain parameters. It does: path (full path starting with '/', example), method (safe verb, default GET), host (override, default service host), query (query-string params), body (JSON body, rare on reads). All five parameters are given clear semantics with examples, fully compensating for the lack of schema descriptions.

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 (read) and resource (ANY endpoint by path), explicitly covering endpoints missing from the catalog. It clearly distinguishes from ym_write_raw and ym_delete_raw, which are mentioned as alternatives for data changes. This makes its purpose unmistakable and differentiates it from the many 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 Guidelines5/5

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

Explicitly tells when to use this tool (read-only raw access to any endpoint) and when not to (use ym_write_raw for changes, ym_delete_raw for deletions). It also implies use for endpoints not covered by catalog-specific tools, and provides the target API documentation link. This is strong guidance on selection among alternatives.

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

Deploy Server

Other Tools