Yango Tech Retail MCP
This server enables AI assistants to manage Yango Tech Retail grocery operations via the B2B API. It covers orders, catalog, pricing, discounts, stock, and offers a raw API escape hatch.
Orders: Create and cancel orders, retrieve order details, batch-track states, poll event feeds for new orders/state changes/receipts, and fetch fiscal receipts (with optional PII).
Catalog: List darkstores, query product catalog (cursor-based), and upsert products.
Pricing & Discounts: List price lists, get prices, set prices (up to 100 items/call), and create per-store discounts (up to 100/call).
Stock: Query stock across stores (cursor-based) and update quantities (modify or initialize, up to 1000 lines/call).
Flexibility: Use
raw_requestto call any/b2b/v1/*endpoint not covered by dedicated tools (e.g., VAT, 3PL), with SSRF guard.Resilience: Automatic retries with exponential backoff, per-request timeouts, trace ID preservation.
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., "@Yango Tech Retail MCPWhat state are orders ORD-1040 through ORD-1042 in?"
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.
Yango Tech Retail MCP
English | Русский
A1 Yango Tech Retail MCP connects an AI app to a retailer account in Yango Tech Retail. Use ordinary language to check stores, orders, products, prices and stock, or to create orders and update account data when needed.
The server works with the retailer-facing B2B API for grocery retail and darkstores. It is not a marketplace seller portal, a taxi service or Yango Delivery.
16 tools. Nine read-only tools, five write tools and two potentially destructive tools cover stores, catalog, pricing, stock, orders and receipts.
A safe read-only start. Check connected data before changing anything in the account.
Clear write boundaries. Order creation and cancellation, product upserts, price changes, discount creation and stock updates are separated from reads.
Additional API coverage. Technical users can reach methods without a dedicated tool through
raw_request.
Start with:
List our stores and show the stock of product
[product ID]in each.
Connect the server · Explore use cases · Open technical documentation
See it work in a minute
You: List our stores and show the stock of product
[product ID]in each.Assistant: I will return the stores, their ids and the current stock of this product in each one.
You: Show the price of this product in every price list.
Assistant: I will return the price lists and the current product price in each one. No account data will be changed.
You: Change the price to
99.90in price list[price-list ID].Assistant: This will change a real customer-facing price. I will show the product, price list, current value and new value before asking for confirmation.
You: Confirm.
Assistant: The price has been updated. I will read the price list again and return the current value.
Stores, products, prices, stock and order states always come from the connected retailer account and the current API response.
Related MCP server: fleetsync-mcp
Contents
Quick start
You need Node.js 20+, a Yango Tech Retail account and a retailer Bearer token.
Get a token from your Yango Tech integration manager.
Add the server to your AI app using one of the instructions below.
Start with a read-only request:
List our stores and show the stock of product
[product ID]in each.
In the app:
Open Settings → Plugins → MCP servers.
Select Add server.
Add the launch command
npx -y mcp-yango-retail@latestand theYANGO_RETAIL_TOKENenvironment variable with your token.
From the command line:
codex mcp add yango-retail \
--env YANGO_RETAIL_TOKEN=your_token \
-- npx -y mcp-yango-retail@latestCheck the connection:
codex mcp listclaude mcp add \
--env YANGO_RETAIL_TOKEN=your_token \
--transport stdio \
--scope user \
yango-retail \
-- npx -y mcp-yango-retail@latestCheck the connection:
claude mcp listOpen Claude Desktop and go to Settings → Developer.
Select Edit Config.
Add the server to
mcpServers:
{
"mcpServers": {
"yango-retail": {
"command": "npx",
"args": ["-y", "mcp-yango-retail@latest"],
"env": {
"YANGO_RETAIL_TOKEN": "your_token"
}
}
}
}If Edit Config is unavailable, open the configuration file directly:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Claude Desktop MCP documentation
Add a user-level server to ~/.cursor/mcp.json on macOS/Linux or %USERPROFILE%\.cursor\mcp.json on Windows:
{
"mcpServers": {
"yango-retail": {
"type": "stdio",
"command": "npx",
"args": ["-y", "mcp-yango-retail@latest"],
"env": {
"YANGO_RETAIL_TOKEN": "your_token"
}
}
}
}Run MCP: Open User Configuration from the Command Palette and add:
{
"servers": {
"yango-retail": {
"type": "stdio",
"command": "npx",
"args": ["-y", "mcp-yango-retail@latest"],
"env": {
"YANGO_RETAIL_TOKEN": "${input:yango_retail_token}"
}
}
},
"inputs": [
{
"type": "promptString",
"id": "yango_retail_token",
"description": "Yango Tech Retail Bearer token",
"password": true
}
]
}Check the server with MCP: List Servers.
What you can ask it to do
Check stores and the product catalog
List stores with their ids, status, location, address and name when available.
Browse products by cursor and inspect their status, category, localized names, barcodes and custom attributes.
Create or update up to 100 products in one request. Product records are upserted rather than added as duplicates.
Check and update prices
List price lists and read product prices from one or more lists.
Compare the same product across price lists.
Set up to 100 prices in one request using decimal strings such as
"150.00".Create up to 100 store-specific discounts after confirming the expected field structure with Yango Tech.
Check and update stock
Read stock across stores, including the product, quantity and shelf type.
Update up to 1,000 stock lines for one store.
Use
initializefor the first stock load andmodifyfor regular updates.
Work with orders and receipts
Create an order after collecting its store, products, quantities, prices, delivery details and payment type.
Read order details and check the current states of several orders at once.
Follow the order event feed for new orders, state changes and issued receipts.
Read a fiscal receipt by order id or receipt id.
Cancel an order after checking its current state and the cancellation reason.
Use additional API methods
raw_request covers /b2b/v1/* methods without a dedicated tool, including order updates, VAT data, price-list links, picking, logistics and 3PL delivery operations. It can change real account data and is intended for technical users who understand the upstream API.
Complete schemas, response fields and API gaps are available in the tool reference.
How retail data is connected
Entity | How it is used |
Store | Identifies the location whose stock and discounts are read or changed |
Product | The same |
Price list | Holds product prices separately from a store; store-to-list links use another API method |
Stock line | Connects a product, store, quantity and shelf type; sellable stock normally uses |
Order | Uses a retailer-supplied |
Receipt | Can be requested by |
Feeds use cursor pagination. A page with fewer items than the requested limit means the current product, price-list or stock feed is exhausted. The order event feed is continuous: keep its last cursor and request the next page later.
What changes in the account
The server exposes MCP annotations for read-only, write and destructive actions. The AI client decides when and how to ask for confirmation.
Action | Result | Changes the account |
Read stores, products, price lists, prices, stock, orders or receipts | Returns current account data | No |
Create or update products | Upserts real catalog records | Yes |
Set prices | Overwrites customer-facing prices | Yes |
Create discounts | Adds real store-specific discounts | Yes |
Update or initialize stock | Overwrites stock quantities for a store | Yes |
Create an order | Adds a real order with the supplied | Yes |
Cancel an order | Changes the order to a cancellation state | Yes |
| Calls another API method, including possible writes | Depends on the method |
Before a write, ask the assistant to show the target store, product ids, price list, quantities, current values and proposed values. Write responses are not fully documented upstream, so after a successful price or stock update the server can read the corresponding data again and show the current value.
Getting access
Yango Tech issues a Bearer token for a retailer account through an integration manager. This repository does not describe a self-service token portal.
Contact your Yango Tech integration manager and request a retailer Bearer token.
Add it to the AI client as
YANGO_RETAIL_TOKEN.Keep it out of Git and share it only through the AI client's secret or environment-variable configuration.
The production API host is https://api.retailtech.yango.com. Every API call is a POST with a JSON body under /b2b/v1/*, including read operations.
The token is stored in the AI client's local configuration. Treat it like a password and never commit a configuration containing a real token.
Configuration
Variable | Required | Default | Description |
| yes | — | Bearer token issued by Yango Tech; |
| no |
| API root override; |
| no |
| Timeout for one request, in milliseconds |
| no |
| Maximum retries for temporary failures; writes are not replayed after network or 5xx errors |
| no | enabled |
|
Data and telemetry
Requests to Yango Tech Retail
The server runs on your machine and sends retailer data directly to the configured Yango Tech Retail API host. The Bearer token is attached only to requests resolved against that host. Even raw_request accepts a relative path and rejects a path that resolves to another origin.
Anonymous telemetry
By default, the server sends technical events to usage.gistrec.cloud: server start, called tool name and a fixed reason code when startup fails.
Events contain a random installation id, package version, AI client name and version, Node.js version and operating system. The Bearer token, retailer data, tool arguments and prompts are not read or sent. Telemetry has a two-second timeout and does not block tool calls.
To disable telemetry, add:
ASKADS_TELEMETRY=0The implementation is in src/telemetry.ts.
Limits and background work
The public API quota is not documented. The official Python client keeps to 5 requests per second for one token and endpoint; use that as an operating guideline, not as a published API limit. This server does not proactively throttle every call.
429 responses are retried. The server follows
Retry-Afterwhen present and makes no more retries thanYANGO_RETAIL_MAX_RETRIESallows.Writes are not replayed after uncertain failures. Network and 5xx retries apply only to side-effect-free reads. After an uncertain write, read the current order, price or stock before trying again.
Batch limits apply. Products, prices and discounts accept up to 100 entries per request; stock updates accept up to 1,000 lines.
There is no background monitoring. The server works only when called from the AI app. If the app supports scheduled tasks, it can check order states or stock periodically.
There is no automatic rollback. A successful update changes the retailer account immediately.
Deletion is limited by the upstream API. Products and prices are upserted; there are no known delete methods for products, prices or discounts.
Discount support is incomplete upstream. The exact keys for the activity period and discount value are undocumented, and there is no known method to list or delete discounts. Confirm the payload with Yango Tech before using it.
Technical documentation
MCP capability catalog — task-oriented pages for every tool.
All tools — input schemas, responses, pagination, API gaps and batch limits.
Development — local setup and project checks.
Publishing — package release and MCP catalog listing.
npm package — the published
mcp-yango-retailpackage.Official Yango Tech Python client — the available upstream specification for this API.
Support
Found a bug or missing a use case? Create an issue or message us on Telegram.
Maintenance
Related MCP Servers
- AlicenseAqualityDmaintenanceIntegrates with Yandex Market Partner API, providing search and execute tools for managing orders, returns, shipments, offers, prices, and other seller operations via natural language.181MIT
- FlicenseAqualityDmaintenanceEnables AI agents to query orders, manage routes, track drivers, and analyze delivery performance on the FleetSync last-mile delivery platform through natural language.18
- FlicenseNot gradedqualityCmaintenanceEnables AI agents to read and write MoySklad inventory, orders, reports, and documents via JSON API 1.2 with safety gates.
- AlicenseAqualityBmaintenanceEnables AI assistants to search products, manage a cart, and place orders with Yandex Lavka, requiring explicit human confirmation before charging.1715MIT
Related MCP Connectors
Manage your NanoCart store from any AI agent: products, orders, coupons, subscribers, reports.
Co-purchase intelligence and merchant ops tools for AI shopping, ecommerce, and B2B agents
Manage your Savanto store from your AI: catalog, content, prompts, and analytics, by chat.
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/A1-x-Tech/mcp-yango-retail'
If you have feedback or need assistance with the MCP directory API, please join our Discord server