Skip to main content
Glama
SZhukovWork
by SZhukovWork

get_product

Read-onlyIdempotent

Retrieve a complete live product card from DNS Shop: price with discounts, availability, ratings, characteristics, and price history for a specified city.

Instructions

Full, live product card for one DNS product in one city.

Price block (price, pre-discount price, each discount with its condition, online-payment estimate, credit payment, paid warranty extensions), marketplace seller with INN, availability (stores with any unit vs with a packaged unit vs showcase-only, pickup points, courier ETA; delivery cost is only known in the cart), per-store stock, the card rating next to this product's own rating with star split, DNS's reliability statistic, characteristics incl. "Модель", variants of a multi-card with their specs, and a weekly price-history summary.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityNoCity as on dns-shop.ru ('Екатеринбург', 'Москва', 'Name, Region') or its GUID; default: DNS_CITY or Екатеринбург
productYesDNS product code ('Код товара', e.g. 5482008), product URL, the 16-hex id from the URL or the product GUID
include_storesNoPer-store stock with packaged vs showcase units (+1 request)
include_price_historyNoWeekly price history summary (+1 request)
include_characteristicsNoFull characteristics incl. 'Модель', description, warranty (+1 request)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior5/5

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

Annotations already declare readOnly/idempotent/non-destructive behavior. The description adds valuable behavioral context: the data is live, delivery cost is only known in the cart, and the three include flags each add exactly one request. This goes well beyond the structured 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 purpose is front-loaded in one clear sentence, followed by a dense enumeration of returned content. The list is long but every clause contributes useful information; it is slightly unwieldy as one continuous sentence, so it does not earn a 5.

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?

With an output schema present and annotations covering side effects, the description adds the missing context: live freshness, request-cost implications of flags, delivery-cost limitation, and the card's scope. An agent has enough information to select and invoke this tool correctly.

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 description coverage is 100%, and each parameter already has a clear description. The tool description does not add per-parameter semantics, so the baseline of 3 is appropriate; the schema carries the parameter documentation burden.

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 opens with a precise verb and resource: 'Full, live product card for one DNS product in one city.' It lists concrete card components, which clearly distinguishes it from sibling tools like search_products, get_reviews, compare_products, and get_price_history.

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?

The description makes the intended context clear: use this when you need the complete live product card for a single product in a single city. It does not explicitly mention when not to use it or name alternative tools, but the scope is strong and unambiguous.

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