Skip to main content
Glama
ztemerbekov

A1 Yandex KIT MCP

Execute any KIT API operation

kit_request

Execute any Yandex KIT API operation by operation ID, including ones without a dedicated tool. Validates the request body against OpenAPI schema before sending real live-store calls.

Instructions

Escape hatch that executes ANY of the 168 Yandex KIT API operations by operationId, including operations without a dedicated tool. WARNING: this performs REAL calls against the live store — write operations (create/update/delete/archive) take effect immediately and there is no sandbox. Workflow: search_operations -> get_operation_schema -> kit_request. The request body is validated against the OpenAPI schema before sending (set validate=false to skip).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNoJSON request body; get the exact shape from get_operation_schema("<OperationId>")
queryNoQuery-string parameters (e.g. page, per_page for paginated lists)
validateNoValidate body against the OpenAPI schema before sending (default true)
path_paramsNoValues for {placeholders} in the path, e.g. {"id": "123"}
operation_idYesOperation id in PascalCase, e.g. "GetProducts" (find it via search_operations)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.3.0

TDQS

A4.9/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden, and it excels: it warns that calls are REAL, write operations take effect immediately, there is no sandbox, and the request body is validated before sending unless validate=false. These are exactly the behavioral facts an agent needs to make safe decisions.

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?

Four tight sentences front-load the critical warning and then give the workflow in a compact sequence. Every sentence adds operational value with no filler or repetition.

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 high-complexity generic tool with no output schema, the description covers safety, workflow, validation behavior, and the relationship to sibling tools. Nothing essential is missing for an agent to select and invoke it correctly.

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 100%, so the schema already documents all parameters. The description adds meaningful guidance by directing agents to get_operation_schema for the exact body shape and by clarifying that validation can be disabled via validate=false, which enriches the parameter semantics beyond the bare 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 clearly identifies this as a generic escape hatch that executes any of 168 KIT API operations by operationId, explicitly including operations without a dedicated tool. This distinguishes it sharply from the many sibling tools that wrap individual operations.

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?

It provides an explicit workflow — search_operations, then get_operation_schema, then kit_request — and positions the tool as the path for operations lacking a dedicated sibling tool. It also tells agents when validation can be skipped, leaving little ambiguity about how to invoke it correctly.

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