Skip to main content
Glama

deliveries_retrieve__get_deliveries_by_id

Read-only

Retrieve delivery orders by their IDs or POS order IDs (up to 200) using the organization ID. Returns detailed information for each matching delivery.

Instructions

Заказы по id (order_ids XOR pos_order_ids, максимум 200).

Raises: ValueError: оба списка заданы, оба пусты или len > 200 Где взять ID: orderIds → deliveries_retrieve__get_deliveries_by_delivery_date_and_status; organizationId → organizations__get_organizations. Троттлинг MCP-сервера (не лимит iikoCloud): не чаще 10 запрос(ов) за 60 с — кэшируйте результат в диалоге.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
requestYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, so no safety surprise. The description adds error conditions (ValueError on invalid input), the XOR constraint, and MCP throttling limit (10/60s) with caching advice. This adds useful behavioral context beyond 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 compact, with main purpose first, then error conditions, ID sources, and throttling. It's well-structured and front-loaded, with no fluff.

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 read-only retrieval with a nested request object, the description covers the key constraints (XOR, max 200, error), ID sourcing, and rate limiting. Optional parameters are documented in schema, and no output schema exists, so completeness is adequate.

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 has detailed descriptions for parameters (orderIds, posOrderIds, etc.), but the description adds the XOR constraint, max 200, and where to get IDs. However, it doesn't cover all parameters (returnLockedByUser, returnExternalDataKeys) and relies on schema for those. Since schema coverage is low per context signal, the description only partially compensates.

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?

The description clearly states it retrieves orders by ID, with the XOR constraint and maximum 200. It doesn't explicitly differentiate from the sibling get_delivery_by_id (singular), but the plural and list usage make it distinct. The purpose is clear enough.

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

Usage Guidelines3/5

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

It provides where to get IDs (from other tools), and mentions throttling/caching, but does not explicitly state when to use this vs alternatives like search_deliveries or get_delivery_by_id. The guidance is implied but not explicit.

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