wildberries-mcp
Click on "Install 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.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Hosted MCP for e-commerce: live product catalog, stock, and pricing for AI agents.
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.
The Mercado Pago MCP Server implements the Model Context Protocol to provide AI agents and LLMs with access to Mercado Pago's APIs and tools within compatible development environments. It acts as an intermediary that translates Mercado Pago resources into executable functions (tools) that AI applications can invoke to perform actions and automate flows. The server simplifies integration, enables using documentation to implement or improve code, and optimizes operations through natural language interactions without manual implementations.
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/ba1520MIT
- 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
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/shndo1337/wildberries-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server