Skip to main content
Glama
SZhukovWork

wildberries-mcp

by SZhukovWork

search_products

Read-onlyIdempotent

Search Wildberries products by query with pagination, sorting, and price filters to get live prices, ratings, stock, seller details, and delivery estimates for each result.

Instructions

Search Wildberries like the site does: real pages, sorting and a price window.

Each item has the live price (and pre-discount price), per-article rating and review count, stock, seller with its rating, WB's delivery estimate in hours for the region, and the product-group id. Fields without data are omitted (no rating = no reviews yet); in_stock_qty 0 means sold out. total_found is how many products WB matched; has_more tells whether another page exists. Search prices come from the result feed — confirm finalists with get_product.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoResult page, 100 items per page
sortNoOrder of results, same options as on the sitepopular
limitNoReturn at most this many items of the page
queryYesSearch phrase, as typed on the site (Russian works best)
price_maxNoUpper price bound, rubles
price_minNoLower price bound, rubles

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior5/5

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

The annotations already mark this as read-only, idempotent, and non-destructive, so the bar for additional disclosure is lower. The description adds meaningful behavioral detail: missing fields are omitted, in_stock_qty 0 means sold out, total_found and has_more have specific meanings, and search prices are from the result feed and should be confirmed with get_product. No contradiction with annotations exists.

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 with the core behavior, then adds only high-value detail about result semantics and the companion get_product tool. Every sentence earns its place, and the structure makes the most important facts easy to find.

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 read-only search tool, this description is complete: it explains the search behavior, the meaning of key result fields, pagination semantics, missing-data behavior, and the price-feed caveat. Together with the rich input schema and annotations, an agent has enough context to invoke the tool correctly and interpret results appropriately.

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 query, sort, page, limit, price_min, and price_max clearly. The description adds only a high-level mention of sorting and a price window, which does not materially enrich parameter understanding beyond the schema. This matches the baseline expected for full schema coverage.

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 identifies the tool as a search against Wildberries with real pages, sorting, and a price window, which distinguishes it from siblings like get_product. The return fields are enumerated, so an agent knows exactly what kind of results to expect. This goes well beyond the tool name.

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 clearly positions this tool for product discovery and explicitly points to get_product for confirming finalists, which gives an agent a concrete routing cue. It does not exhaustively list when not to use it versus get_price_history, get_reviews, or compare_products, but the context is still clear and useful.

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