mcp-wb
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., "@mcp-wbShow overview of pending feedback and questions"
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.
mcp-wb
Remote MCP server that connects Claude to communication with buyers on Wildberries: reviews, questions, and chats. Deployed as a custom organization connector — each employee connects it in their own Claude, while the Wildberries token stays only on the server.
What it can do
Reading
Tool | What it does |
| Summary: how many reviews and questions are awaiting a reply, whether there are unviewed ones, how many chats |
| Reviews |
| Questions |
| Chats and message feed with a cursor |
| Who the connector is working as and what it is allowed to do |
Replies to customers — only via draft
Tool | What it does |
| Prepares a reply to a review |
| Prepares an edit to a published reply (WB gives one attempt per 60 days) |
| Prepares an answer to a question |
| Prepares a chat message |
| Viewing and canceling drafts |
| The only tool that actually sends something to a buyer. Requires |
| Rejecting a question and removing the "unviewed" mark |
Every send is written to the audit log with the employee's email, text, and result.
Related MCP server: Meta Cloud API MCP Server
Why it is structured this way
The Wildberries token is personal, and it never leaves the server. WB limits for the "Questions and Reviews" category for a basic token are 5 requests per hour, for chats — 1 request per hour; you cannot work with those. A personal token gives 3 requests per second, but per WB rules it is forbidden to share it with third parties or use it in cloud services — it is intended for systems on your own or rented infrastructure. Hence: your own VPS, one token on the server, employees go through OAuth.
The employee's identity is established by our server. Claude does not pass email or user ID to the MCP server, and the organization admin panel does not support the "server without authorization" option. So the server itself works as an OAuth 2.1 authorization server (PKCE, Dynamic Client Registration, RFC 9728/8414), and takes identity from Google, Yandex, or a one-time code.
Roles. ALLOWED_EMAIL_DOMAINS / ALLOWED_EMAILS decide who can log in at all. RESPONDER_EMAILS and ADMIN_EMAILS — who can send. Everyone else gets a token without the wb:write right and physically cannot call wb_draft_send.
Requirements
VPS with a public IP, reachable from the internet (Claude reaches the server from its side — a server behind NAT or VPN will not work)
Domain with an A-record pointing to this IP
Docker and Docker Compose
Personal WB token with the "Questions and Reviews" and "Chat with buyers" categories
Owner or Primary Owner rights in the Claude organization (only they can add connectors)
Deployment
1. Wildberries token
Seller's personal account → Settings → API Access → Create token → "For manual integration" tab → type Personal. Check the "Questions and Reviews" and "Chat with buyers" categories, access level — Read and write. The token is shown once, lives 180 days — set a reminder to replace it.
2. Configuration
git clone <репозиторий> mcp-wb && cd mcp-wb
cp .env.example .envFill in .env. Required minimum:
PUBLIC_URL=https://mcp-wb.вашдомен.ru
MCP_DOMAIN=mcp-wb.вашдомен.ru
ACME_EMAIL=admin@вашдомен.ru
WB_TOKEN=<токен из шага 1>
SESSION_SECRET=<openssl rand -hex 32>
ALLOWED_EMAIL_DOMAINS=вашдомен.ru
ADMIN_EMAILS=вы@вашдомен.ru
RESPONDER_EMAILS=менеджер1@вашдомен.ru,менеджер2@вашдомен.ruCheck the token before starting:
npm install && npx tsx scripts/probe-wb.ts3. Employee login
Google Workspace (IDENTITY_PROVIDER=google) — in Google Cloud Console create an OAuth client of type "Web application", in Authorized redirect URIs add:
https://mcp-wb.вашдомен.ru/idp/google/callbackGOOGLE_CLIENT_ID and GOOGLE_CLIENT_SECRET — in .env.
Yandex ID (IDENTITY_PROVIDER=yandex) — app at oauth.yandex.ru, Callback URI:
https://mcp-wb.вашдомен.ru/idp/yandex/callbackWithout external IdP (IDENTITY_PROVIDER=invite) — issue one-time codes:
docker compose exec mcp-wb node dist/scripts/invite.js ivan@вашдомен.ru4. Launch
docker compose up -d --buildCaddy will get the Let's Encrypt certificate itself. Check:
curl https://mcp-wb.вашдомен.ru/.well-known/oauth-protected-resource/mcpShould return JSON with "resource": "https://mcp-wb.вашдомен.ru/mcp".
5. Connecting to the Claude organization
Settings → Connectors in the organization (the item is visible only to Owner).
Add → Custom → Web.
URL:
https://mcp-wb.вашдомен.ru/mcpNo need to touch Advanced settings: the server supports Dynamic Client Registration and will register Claude itself.
Save — the connector appears for all organization employees.
6. What each employee does
Opens Claude → Connectors → finds the connector → Connect → logs in with corporate email. After that you can write in plain language: "show unanswered reviews for the week", "prepare a reply to review X".
Check your rights: wb_whoami.
Operations
Action log. Everything that went to the buyer is stored in the audit table of the database file:
docker compose exec mcp-wb \
node -e "const d=require('better-sqlite3')('/data/mcp-wb.db');console.table(d.prepare('SELECT datetime(ts,\"unixepoch\") t,actor,action,target,outcome FROM audit ORDER BY ts DESC LIMIT 30').all())"Revoke an employee's access — remove them from ALLOWED_EMAILS / disable them in Google Workspace and restart the container. Active tokens check the access list on every request, so access disappears immediately.
Replacing the WB token — once every 180 days: new token in .env, then docker compose … up -d.
Limits. The client itself keeps the pace: 3 requests/s for reviews and questions, 10 per 10 s for chats, with waiting on the X-Ratelimit-Retry header on 429.
Development
npm install
npm run dev # tsx watch
npm run typecheck
WB_SANDBOX=true npm run dev # песочница WB (только отзывы и вопросы, чата в ней нет)For a local OAuth run, set PUBLIC_URL=http://localhost:3000 and IDENTITY_PROVIDER=invite.
Boundaries
Chat: WB has no sandbox host, you can only test on the production account.
Replies to reviews and questions go through WB moderation and are not published instantly.
Editing a reply — one attempt within 60 days, after that the text is fixed forever.
Return requests (
returns-api) require a separate token category and are not connected in this version.The server works without sessions: each HTTP request creates its own MCP server instance, so there are no server-side notifications to the client.
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 Servers
- FlicenseAqualityBmaintenanceConnects Claude to Amazon Seller Central via the SP-API for natural language queries on sales, inventory, reports, fees, reimbursements, and analytics.2047
- AlicenseBqualityDmaintenanceEnables Claude to manage WhatsApp templates, flows, and send messages through the WhatsApp Cloud API.3126MIT
- AlicenseAqualityDmaintenanceConnects Claude to Open WebUI, enabling chat management, RAG knowledge bases, files, functions, and prompts directly from Claude.26252MIT
- FlicenseAqualityCmaintenanceConnects Claude to your Amazon Seller Central account via the Selling Partner API, enabling queries for recent orders, sales summaries, FBA inventory, and financial events.4
Related MCP Connectors
Drive your real WhatsApp inbox from Claude — send, reply, label, assign, and triage via TimelinesAI.
Connect Claude to Fathom meeting recordings, transcripts, and summaries
Amazon brand, seller, niche & buy-box intelligence inside your own Claude or ChatGPT.
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/hollowmountain/wb_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server