Skip to main content
Glama

get_reviews

Read-onlyIdempotent

Retrieve buyer reviews and product ratings from letu.ru, including text, star ratings, pros/cons, verified purchases, and shop responses. Filter by rating or media for targeted feedback.

Instructions

Buyer reviews of a product: date, stars, text, pros, cons, likes, verified purchase, shop answer.

Also returns the product rating (all variants together) with the star split. Reviews are not linked to a variant (volume/shade). Buyer names and order numbers are never returned.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityNoCity name as on letu.ru (e.g. 'Екатеринбург', 'Москва'). Default: LETU_CITY, else the city letu.ru assigns to this IP. Prices do not depend on the city; delivery, store stock and the variants available do.
pageNoPage of reviews
sortNo'relevant' = the site's default (expert reviews first, then newest). The site has no worst-first order: use max_rating=3 to read complaintsrelevant
limitNoReviews per page (the site allows up to 50)
productYesletu.ru product id (e.g. '71600124'), product URL, or 'productId:skuId' to pin a variant
max_ratingNoOnly reviews with at most this many stars
min_ratingNoOnly reviews with at least this many stars
with_mediaNoOnly reviews with photos or videos

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.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=true, idempotentHint=true, and destructiveHint=false. The description adds meaningful behavioral context beyond that: reviews are not linked to a variant, and buyer names/order numbers are never returned. It also clarifies the return includes aggregate rating. This supplements the annotations without contradiction.

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 concise paragraphs with no filler. The first sentence states the core purpose and returned fields, immediately followed by the aggregate rating note and the variant caveat. Every sentence contributes useful information, and it is appropriately front-loaded.

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?

The description covers the tool's primary function, the data it returns, and key limitations (variant independence, no buyer names/order numbers). With an output schema present and a rich input schema, the agent has everything needed to call this tool correctly. The description does not need to explain pagination or field formats because the schema handles those.

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 (city, page, sort, limit, product, max_rating, min_rating, with_media) has a detailed description in the schema. The tool description does not add further parameter explanations beyond listing returned fields, which are not parameters. Since the schema fully documents parameters, the baseline 3 applies; the description adds no extra value here.

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 states the tool retrieves buyer reviews for a product, enumerating the returned fields (date, stars, text, pros, cons, likes, verified purchase, shop answer). It also notes it returns the aggregate product rating with star split. This is a specific verb+resource that distinguishes it from sibling tools like get_product (product details) and search_products (search).

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 implies the tool is for fetching reviews and aggregate ratings, but does not explicitly contrast it with alternatives. It does provide a useful caveat: 'Reviews are not linked to a variant' and 'Buyer names and order numbers are never returned', which helps the agent decide if this tool is appropriate. However, it does not name sibling tools or explicitly state when not to use it, leaving some inference to the agent.

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