Skip to main content
Glama

crpt_call_method

Destructive

Execute a Chestny ZNAK API operation by operation_id, passing path, query, and body values. Read calls run immediately; write or destructive calls require explicit confirmation flags.

Instructions

Execute one catalog endpoint by operation_id.

Read endpoints run immediately. WRITE endpoints require confirm_write=true. DESTRUCTIVE endpoints require confirm_write=true AND i_understand_this_modifies_data=true (nothing is sent otherwise).

Args: operation_id: id from the catalog (see {svc}_search_methods). path_values: values for {placeholders} in the path. query: query-string parameters. body: JSON request body. confirm_write: required for write/destructive operations. i_understand_this_modifies_data: required for destructive operations. Returns JSON: {"ok": true, "status", "data"} or the error envelope.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNo
queryNo
path_valuesNo
operation_idYes
confirm_writeNo
i_understand_this_modifies_dataNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=false and destructiveHint=true, so the risk profile is known. The description adds genuinely new behavior: read endpoints run immediately with no gate, write/destructive calls are silently no-ops when confirmations are absent, and the success/error envelope shape is disclosed. This is substantive context beyond the 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?

Front-loaded with the core action, then the confirmation gating, then parameters, then return shape. Every section earns its place, though the Args list retreads names that also appear in the schema and could be tightened.

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 six-parameter, open-world dispatcher with no schema descriptions, the definition supplies the gate semantics, operation_id provenance, all parameter roles, and the return envelope. An output schema exists, so the brief return note is sufficient.

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 coverage is 0%, so the description carries the full burden, and it satisfies it: all six parameters are explained, including the tricky ones (path_values for {placeholders}, query for query-string params, body for the JSON payload) plus the two safety-gate booleans and where operation_id comes from.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource ('Execute one catalog endpoint by operation_id'), which lets an agent distinguish this catalog-dispatch tool from section/cabinet siblings. It does not, however, clarify how it differs from crpt_call_raw or crpt_fetch_all, which appear to occupy adjacent niche.

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?

Gives explicit, actionable routing for the confirmation flags: write needs confirm_write=true, destructive needs both confirm_write and i_understand_this_modifies_data, and 'nothing is sent otherwise'. It also points to {svc}_search_methods as the source of operation_id. It stops short of naming when to prefer crpt_call_raw or crpt_fetch_all instead.

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