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: Query price lists — MCP tool

Yango Tech Retail MCP tool: 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.

Technical name: query_price_lists

What task it solves

I want to 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.

When to use it

Use this capability when you need “Query price lists” without doing the same work manually in the Yango Tech Retail interface. It runs only when an AI client calls it.

What to provide

  • cursoroptional. Opaque cursor from the previous response of this tool. Omit it for the first page; the feed is exhausted when a page comes back with fewer items than limit.
  • limitoptional. Page size (default 100 — the official client's value; the server-side maximum is undocumented).

What it returns

Returns {pricelists: [{id, name, status (active|removed)}], cursor}.

What changes in Yango Tech Retail

The tool reads Yango Tech Retail data and does not change it.

Example request

Query price lists in Yango Tech Retail. Ask for any required identifiers that are missing.

Errors and limitations

Price-list ids feed get_prices and set_prices. Related endpoints without a dedicated tool (pricelists/get, pricelists/create, store-pricelist-links/*) are reachable via raw_request.

Access also depends on token permissions, quotas, and upstream API limits.

Related MCP tools

Technical details