Skip to main content
Glama
SZhukovWork

aliexpress-ru-mcp

by SZhukovWork

get_reviews

Read-onlyIdempotent

Retrieve paginated buyer reviews for any AliExpress.ru item, with filters for star rating, photos, follow-ups, and sorting by helpfulness, newest, or lowest rating to reveal drawbacks.

Instructions

Buyer reviews with real pagination, sorting and filters.

Each review: date, stars, text (machine-translated into Russian when the buyer wrote in another language — original_text then holds the original), bought variant, photo count, helpful votes, buyer country, seller reply and follow-up review. Also the item's rating with the star split (all variants together) and, optionally, aspect tags.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage of `limit` reviews
sortNo'lowest' surfaces complaints first — the fastest way to real drawbackshelpful
limitNoReviews per page
starsNoOnly reviews with exactly this many stars
item_idYesaliexpress.ru item id: the number in /item/<id>.html or /item/1_<id>.html
source_idNo1 for items whose URL is /item/1_<id>.html (search results say so), else 0. A wrong value is corrected automatically.
from_russiaNoOnly reviews the site marks as from Russia
with_photosNoOnly reviews with buyer photos
with_follow_upNoOnly reviews the buyer later amended ('Дополненные') — long-term experience
include_aspectsNoAlso return AliExpress's aspect tags mined from reviews ('Яркий свет' — 90 mentions, 97% positive)

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
Behavior5/5

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

The description goes well beyond the readOnly/idempotent annotations by disclosing real behavioral quirks: texts are machine-translated into Russian with the original preserved in original_text, the rating is aggregated across all variants, and aspect tags are optional. It also flags the review-composition details that affect how an agent interprets results.

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 compact and front-loaded: the first sentence states the core capability, and the second efficiently lists return fields in a scannable colon-list format. Every sentence adds either scope or behavioral detail, with no filler or repetition of schema content.

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 tool with 10 parameters, an output schema, and read-only/idempotent annotations, the description is complete enough for an agent to call it correctly. It explains the key output semantics, while the schema covers all input parameters and the output schema covers return structure, leaving no critical gap.

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 the input schema already explains each parameter thoroughly, including sort semantics, item_id URL formats, source_id auto-correction, and aspect-tag examples. The main description adds only a general mention of sorting/filters and optional aspect tags, so it does not materially improve parameter understanding beyond the schema.

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 names a specific resource ('buyer reviews') and a clear action ('get'), then details exactly what is returned: review fields, item rating, star split, and optional aspect tags. It is immediately distinguishable from the sibling tools, which target search, single-product details, and comparison 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 Guidelines3/5

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

The intended use is implied clearly by 'Buyer reviews with real pagination, sorting and filters' and the item_id requirement, but there is no explicit statement of when to use this tool versus a sibling like get_product. The description also mentions the item rating, which could overlap with get_product, so exclusions or routing guidance would help.

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