wildberries-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@wildberries-mcpSearch for smartwatch under 5000₽ and compare reviews"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
wildberries-mcp
An MCP server that turns Wildberries (the largest Russian marketplace) into a toolkit for LLM agents. It lets a model search products, inspect a product card, read its price history and reviews, and compare several products side by side — i.e. do cross-product research, which Wildberries' own built-in review AI (single-product only) does not do.
Tools
Tool | What it does |
| Search by keyword → article, name, brand, price, rating, review count |
| Full card: name, brand, category, description, current price, rating |
| Price points over time → reason about trends and real discounts |
| Aggregate rating, star distribution, review counts, sample review texts |
| Side-by-side comparison of several products |
Related MCP server: WildberriesToolsMCP
How it works (the interesting part)
Wildberries has no public API for this, so the server talks to the same internal endpoints the website uses — which took some reverse-engineering, because they moved:
Product data comes from the basket CDN:
basket-XX.wbbasket.ru/volA/partB/{article}/info/ru/card.json. TheXXhost isn't fixed — it's derived from the article and the mapping changes as WB adds shards, so the client probes and caches the right host per volume instead of hardcoding a table.Price history lives next to it:
.../info/price-history.json.Reviews are keyed by
imt_id(not the article), so the client readsimt_idfrom the card, resolves the feedback host viafeedback-bt.wildberries.ru, then fetchesfeedbacks/v2/{imt_id}.Search goes through
search.wb.ru/exactmatch/ru/common/v9/search. It is aggressively rate-limited (HTTP 429), so all requests share a session, keep a minimum interval, and retry with exponential backoff.
The older endpoints most public WB scrapers use (card.wb.ru/cards/v1, feedbacks-by-article) are dead as of 2026; this uses the current ones.
Setup
git clone https://github.com/shndo1337/wildberries-mcp.git
cd wildberries-mcp
python -m venv venv
venv\Scripts\activate # Windows
# source venv/bin/activate # Linux/Mac
pip install -r requirements.txt
python server.py # runs an MCP server over stdioUse it with Claude / any MCP client
Add to your MCP client config (e.g. Claude Desktop claude_desktop_config.json):
{
"mcpServers": {
"wildberries": {
"command": "python",
"args": ["C:/path/to/wildberries-mcp/server.py"]
}
}
}Then ask the agent things like "Find wireless earbuds under 2000₽ with rating above 4.5 and compare the top 3 by reviews and price trend."
Example (get_product)
{
"article": 762015089,
"name": "Наушники беспроводные A.Pods PRO 2 для iPhone и Android",
"brand": "world of sound",
"category": "Наушники беспроводные",
"current_price_rub": 945.97,
"rating": "4.6",
"review_count": 125270
}Limitations
Relies on Wildberries' internal endpoints — a change on their side can break tools; the code is structured so each source is isolated and easy to fix.
Search is rate-limited by WB; heavy use needs the built-in backoff (already included) or proxies.
No authentication / seller API — this is read-only public product data.
This server cannot be deployed
Maintenance
Related MCP Connectors
Hosted MCP for e-commerce: live product catalog, stock, and pricing for AI agents.
Your agent needs marketplace data — what a product costs on Amazon and Google Shopping, who the sellers are, what reviewers actually complain about. **What you can ask for** • "What is this ASIN's price history, rating and seller list?" • "Who else sells this product, and at what price?" • "Pull the reviews for this product and group the complaints." • "What comes up on Google Shopping for this query in the UK?" • "Compare these products across both marketplaces." **How to use it** Point any MCP client at https://mcp.aisa.one/seo-merchant/mcp and sign in with OAuth — there is no key to create or paste. 22 tools: Amazon products, ASIN detail and sellers; Google Shopping products, product info, sellers and reviews; live and queued forms, with raw HTML where you need it. **It is also a door to the rest** The same login reaches 26 sources and 580+ operations. Price the product here, then ask the same agent what the brand's site traffic or ad spend looks like — without adding a second server. **What it costs** Finding and inspecting an operation is free. Running one is billed per call at API prices, with no seat and no monthly minimum, and every call takes max_price_usd so an agent cannot overspend by accident. **Where else it reaches** https://mcp.aisa.one/seo/mcp for all of it at once — rankings, keywords, backlinks, site health and AI-answer visibility across DataForSEO, Semrush and Ahrefs.
Pay-per-use tool marketplace for AI agents. Search, price-check, and call APIs via MCP.
MCP server for building and testing AI agents with multi-model experimentation and insights.
Related MCP Servers
- AlicenseAqualityDmaintenanceozon-mcp is a knowledge-rich MCP server that turns the entire Ozon seller toolkit into 15 high-leverage tools. AI agents (Claude, Cursor, Cline, Continue, Goose, Zed, …) can search the API in Russian or English, drill into any of 466 methods with a fully-resolved JSON Schema, and execute calls with built-in safety guards. Subscription- aware, automatic pagination over all 4 cursor styles, retry/ba1521MIT
- FlicenseNot gradedqualityBmaintenanceMCP server for retrieving Wildberries product reviews and formatting them as JSON for LLM analysis.1-
- FlicenseBqualityCmaintenanceProvides MCP tools for searching and comparing products on Wildberries (and Ozon planned), including product search, detailed card retrieval, and review fetching, normalized for LLM consumption.32-
- AlicenseAqualityDmaintenanceMCP server for Wildberries Seller API enabling management of products, orders, supplies, analytics, advertising, and finance through natural language commands.32MIT