Connect the Yango Tech Retail MCP server to your AI agent Open source, MIT, on npm. Setup instructions for Claude, Cursor and Codex are in the repository; adoption questions — Telegram. GitHub repository Telegram

Yango Tech Retail MCP capabilities

This catalog contains 16 public pages—one for every registered MCP tool in mcp-yango-retail. Each page starts with the user's task, explains the result, and states whether the call changes real data.

Use this catalog to choose a ready-made capability. Full parameter schemas and API response details remain in the technical reference.

Orders and receipts

  • Cancel an order — Cancels an existing order (POST /b2b/v1/orders/cancel). Impact: destructive operation.
  • Create an order — Creates an order on the Yango Tech platform (POST /b2b/v1/orders/create). Impact: changes data.
  • Get order details — Details of a single order (POST /b2b/v1/orders/get): every field the order was created with (cart, delivery_address, payment_type, store_id, …) plus create_time. Impact: read-only.
  • Get order states (batch) — Batch order tracking (POST /b2b/v1/orders/state). Impact: read-only.
  • Get fiscal receipts — Fiscal receipt(s) by receipt id OR order id (POST /b2b/v1/receipts/get) — pass exactly one of the two. Impact: read-only.
  • Poll the order event feed — Cursor-based order event feed (POST /b2b/v1/orders/events/query): new orders, state changes and issued receipts. Impact: read-only.

Prices and discounts

  • Create discounts — Creates per-store product discounts (POST /b2b/v1/discounts/create), at most 100 per request. Impact: changes data.
  • Get prices — Product prices for one or more price lists (POST /b2b/v1/prices/get). Impact: read-only.
  • Query price lists — Cursor-based price-list feed (POST /b2b/v1/pricelists/query) — the API's only way to list price lists, so a full snapshot means iterating until a page has fewer items than limit. Impact: read-only.
  • Set prices — Sets product prices in price lists (POST /b2b/v1/prices/set), at most 100 per request. Impact: changes data.

Catalog

  • Create or update products — Creates (or upserts) products in the catalog (POST /b2b/v1/products/create), at most 100 per request. Impact: changes data.
  • List stores — All stores (darkstores) of the retailer (POST /b2b/v1/stores/get, no parameters). Impact: read-only.
  • Query the product catalog — Cursor-based product catalog / product-updates feed (POST /b2b/v1/products/query). Impact: read-only.

Stocks

Additional API methods

  • Raw Yango Tech Retail API call — Escape hatch: direct call to any Yango Tech Retail B2B endpoint — for paths without a dedicated tool (orders/update, receipts/documents/upload, wms/picking/set-state, logistics/delivery/set-state, products-vat/*, pricelists/get|create, store-pricelist-links/*, 3pl/deliveries/*). Impact: destructive operation.

For maintainers and publishers