Skip to main content
Glama
u1ch1
by u1ch1

get_products

Retrieve a seller's product cards from Wildberries via the Content API, using limit and offset to paginate through results.

Instructions

Возвращает список карточек товаров продавца из Wildberries Content API. Параметры limit и offset работают как в классической пагинации.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitYesКоличество товаров для возврата (положительное число).
offsetNoСколько товаров пропустить от начала списка (неотрицательное число). По умолчанию 0.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full behavioral burden. It discloses that the tool returns a list and that limit/offset behave like classic pagination, which is useful. However, it does not mention ordering, edge cases, maximum limits, or error behavior, leaving some uncertainty.

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 two sentences with no filler. The first sentence front-loads the primary purpose, and the second adds essential pagination context succinctly.

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?

Given the simplicity of the tool (2 parameters, no output schema, no annotations), the description covers the essential operational details: source API, action (return list), and pagination semantics. It omits minor details like ordering or return structure, but these are not critical for a basic 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 description coverage is 100%, so the baseline is 3. The description adds relational meaning by explaining that limit and offset work together as classic pagination, which goes beyond the individual schema descriptions and helps the agent understand how to construct paged requests.

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 uses a specific verb ('Возвращает') and a clear resource ('список карточек товаров продавца из Wildberries Content API'), stating exactly what the tool returns. It also differentiates from the sole sibling, get_product_reviews, by focusing on product cards rather than reviews.

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

Usage Guidelines2/5

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

There is no explicit guidance on when to use this tool versus get_product_reviews, nor any exclusions or conditional routing. The pagination note provides context but not usage direction, leaving the agent to infer applicability from the purpose statement.

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