Ozon Marketplace
Ozon Seller Products MCP Tool
MPSTATS Ozon Russia seller drill-down product list by seller ID. Returns all SKUs under a seller with complete metrics: sales, revenue, price, rating, stock, turnover, lost revenue, supporting multi-dimensional numeric filters, sorting, and currency conversion. Use for store structure analysis, seller bestseller analysis, competitor store benchmarking.
MCP tool name
nexscope_ozon_seller_productsEquivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/ozon-seller-products/runJSON-RPC method
tools/callAuthentication
Send the user API key as a bearer token on every MCP JSON-RPC request.
Authorization: Bearer nk_xxxxxxxxxxxxxxxxxIf authentication is missing or invalid, ask the user to open API Access and copy a valid key before calling this tool.
Call this MCP tool
Use tools/call with the MCP tool name below. The arguments object should match the table on this page.
{
"jsonrpc": "2.0",
"id": "ozon-seller-products-1",
"method": "tools/call",
"params": {
"name": "nexscope_ozon_seller_products",
"arguments": {
"endDate": "2026-01-31",
"startDate": "2026-01-01",
"sellerId": "1581151",
"currencyRate": 1,
"page": 1,
"pageSize": 10
}
}
}REST API equivalent
POST /api/skill-api/v1/runhttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/ozon-seller-products/runCanonical detail URL
https://www.nexscope.ai/mcp-map/ozon-seller-productsArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
sellerId | string | required | Ozon seller ID (numeric string), matching the seller identifier in product lists/seller rankings Example: 1581151 |
startDate | string | optional | Statistics start date YYYY-MM-DD; latest is yesterday Example: 2026-01-01 |
endDate | string | optional | Statistics end date YYYY-MM-DD; latest is yesterday Example: 2026-01-01 |
page | integer | optional | Page number, starting from 1 Example: 1 |
pageSize | integer | optional | Rows per page 1-100, default 100 Example: 10 |
sortField | string | optional | Sort column name (snake_case), e.g., sales, revenue, final_price, balance, rating Example: {} |
sortDirection | string | optional | asc / desc Example: {} |
currency | string | optional | Currency code, default RUB, e.g., USD Example: {} |
currencyRate | integer | optional | Custom exchange rate (for non-default currency) Example: 1 |
includeFbs | boolean | optional | Whether to include FBS data Example: false |
filters | array | optional | List of numeric filter conditions, each {field, op, value, value2?}, multiple conditions AND Example: [] |
Response fields
Treat structuredContent as the programmatic API response payload.
| Name | Type | Required | Meaning |
|---|---|---|---|
code | string | optional | Return code, "200" success Example: {} |
msg | string | optional | Message; ok for success Example: {} |
total | integer | optional | Total number of matched products under the seller Example: 1 |
products | array | optional | Product list (see details below) Example: [] |
columns | array | optional | Rendered column definitions Example: [] |
costTime | integer | optional | API latency (milliseconds) Example: 1 |
costToken | integer | optional | Tokens consumed Example: 1 |
type | string | optional | Response type Example: {} |
products[].productId | integer | optional | SKU ID Example: 1 |
products[].title | string | optional | Product name (Russian) Example: {} |
products[].brand | string | optional | Brand Example: {} |
products[].brandId | integer | optional | Brand ID Example: 1 |
products[].sellerName | string | optional | Seller name Example: {} |
products[].sellerId | integer | optional | Seller ID Example: 1 |
products[].category | string | optional | Category path (Russian, / separated) Example: {} |
products[].nicheName | string | optional | Niche path (Russian) Example: {} |
products[].nicheId | integer | optional | Niche ID Example: 1 |
products[].country | string | optional | Country of sale, always RU for Ozon Example: {} |
products[].firstDate | string | optional | Listing date (yyyy-MM-dd) Example: 2026-01-01 |
products[].imageUrl | string | optional | Main image URL Example: https://example.com/image.jpg |
products[].productPageUrl | string | optional | Product page URL Example: https://example.com/image.jpg |
products[].sourceTool/sourceType | string | optional | Source tool / data source identifier Example: {} |
products[].price | number | optional | Current selling price Example: 1 |
products[].oldPrice | number | optional | Original price before discount Example: 1 |
products[].ozonCardPrice | number | optional | Ozon Card price Example: 1 |
products[].minPrice/maxPrice/averagePrice | number | optional | Minimum / maximum / average price during the statistics period Example: 1 |
products[].currency | string | optional | Currency symbol (₽ / $ / €) Example: {} |
products[].rating | number | optional | Rating, 0-5 Example: 1 |
products[].reviewCount | integer | optional | Number of reviews Example: 1 |
products[].balance | integer | optional | Current stock (units) Example: 1 |
products[].balanceFbs | integer | optional | FBS stock (seller self-ship units) Example: 1 |
products[].frozenStocks | integer | optional | Slow-moving stock Example: 1 |
products[].warehousesCount | integer | optional | Number of FBO warehouses Example: 1 |
products[].isFbs | boolean | optional | Whether shipped via FBS Example: false |
products[].salesPerDay | number | optional | Average daily sales (units/day) Example: 1 |
products[].monthlySalesUnits | integer | optional | Sales volume during the statistics period (units) Example: 1 |
products[].monthlySalesRevenue | number | optional | Sales revenue during the statistics period Example: 1 |
products[].lostProfit | number | optional | Lost revenue (due to stockouts, etc.) Example: 1 |
products[].daysInSite | integer | optional | Days on sale (statistics period, including out-of-stock days) Example: 1 |
products[].daysInStock | integer | optional | Days in stock Example: 1 |
products[].turnoverDays | number | optional | Turnover days (lower is faster) Example: 1 |
products[].position | integer | optional | Ranking within the current query dimension (seller for this endpoint) Example: 1 |
products[].categoryPosition | integer | optional | Ranking within the category Example: 1 |
products[].revenueSharePercent | number | optional | Revenue share of this SKU within the current query dimension, 0-100 Example: 1 |
errcode | integer | optional | Upstream status code returned by the provider. Example: {} |
errmsg | string | optional | Upstream status message returned by the provider. Example: {} |
message | string | optional | Provider-specific message. Example: {} |
title | string | optional | Provider-specific response title. Example: {} |
sourceType | string | optional | Provider-specific source platform type. Example: {} |
sourceTool | string | optional | Provider-specific source tool name. Example: {} |
page | integer | optional | Current page returned by the upstream provider. Example: {} |
pageSize | integer | optional | Page size returned by the upstream provider. Example: {} |
pageItemCount | integer | optional | Item count on the current page returned by the upstream provider. Example: {} |
totalPage | integer | optional | Total page count returned by the upstream provider. Example: {} |
dataSnapshotMonth | string | optional | Data snapshot month returned by the upstream provider. Example: {} |
Examples
Example arguments
{
"endDate": "2026-01-31",
"startDate": "2026-01-01",
"sellerId": "1581151",
"currencyRate": 1,
"page": 1,
"pageSize": 10
}Example structuredContent
{
"total": 1,
"products": [
{
"productId": 1,
"brandId": 1,
"sellerId": 1,
"nicheId": 1,
"firstDate": "2026-01-01",
"imageUrl": "https://example.com/image.jpg",
"productPageUrl": "https://example.com/image.jpg",
"price": 1,
"oldPrice": 1,
"ozonCardPrice": 1,
"minPrice/maxPrice/averagePrice": 1,
"rating": 1,
"reviewCount": 1,
"balance": 1,
"balanceFbs": 1,
"frozenStocks": 1,
"warehousesCount": 1,
"isFbs": false,
"salesPerDay": 1,
"monthlySalesUnits": 1,
"monthlySalesRevenue": 1,
"lostProfit": 1,
"daysInSite": 1,
"daysInStock": 1,
"turnoverDays": 1,
"position": 1,
"categoryPosition": 1,
"revenueSharePercent": 1
}
],
"columns": [],
"costTime": 1,
"costToken": 1
}