← 返回 Skills 市场
linkfox-ai

Mpstats Ozon Seller Products

作者 linkfox-ai · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
28
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install linkfox-mpstats-ozon-seller-products
功能描述
MPSTATS Ozon 俄罗斯站按卖家 ID 下钻商品列表。返回该卖家下全部 SKU 的销量、销售额、价格、评分、库存、周转、损失销售额等完整指标,支持多维数值筛选、排序、货币换算。用于店铺结构分析、卖家爆款拆解、竞争对手店铺对标。当用户提到 Ozon 卖家商品、Ozon 店铺分析、Ozon 卖家下钻、Ozon...
使用说明 (SKILL.md)

MPSTATS Ozon Seller Products

This skill drills into all Ozon (Russia) products sold by a given seller, returning per-SKU sales, revenue, price, rating, stock, turnover, lost profit, and more. Designed for store-structure audits, bestseller dissection within a shop, and head-to-head competitor-store comparison.

Core Concepts

Seller ID, not name: sellerId must be a numeric string — the sellerId field Ozon / MPSTATS uses to identify a shop. Do not pass a brand name, category path, or human-readable seller name. If you only have the seller name, resolve the ID via mpstats-ozon-product-search (seller-filtered) and read sellerId from the result.

Filters & ops: Same AND-combined numeric filter model as brand-products and category-products. See Filter Reference.

Currency: Default RUB; override with currency / currencyRate for USD / EUR / CNY views.

FBO / FBS: includeFbs: true folds FBS into the numbers; false keeps FBO-only.

Parameters

Parameter Type Required Description
sellerId string yes Ozon seller ID as numeric string, e.g. "3628678"
startDate string no Stats window start, YYYY-MM-DD; latest = yesterday
endDate string no Stats window end, YYYY-MM-DD; latest = yesterday
page integer no Page number, starts at 1
pageSize integer no Rows per page, 1-100, default 100
sortField string no snake_case column (sales, revenue, ...)
sortDirection string no asc / desc
currency string no Currency code, default RUB
currencyRate integer no Custom rate for non-default currency
includeFbs boolean no Include FBS data
filters array no Numeric filter list

Filter Reference

Each filters entry: {"field": "\x3Csnake_case>", "op": "\x3COP>", "value": \x3Cnum>, "value2": \x3Cnum?>}.

Common fields: sales, final_price, rating, comments, balance, revenue, days_in_stock, turnover_days, lost_profit, category_position.

Operators: GTE, LTE, GT, LT, EQ, NOT_EQ, BETWEEN (requires value2).

API Usage

This tool calls the LinkFox tool gateway API. See references/api.md for calling conventions, request parameters, response structure, and error codes. You can also execute scripts/mpstats_ozon_seller_products.py directly for ad-hoc queries.

Usage Examples

1. Seller's top-100 by sales

{
  "sellerId": "3628678",
  "sortField": "sales",
  "sortDirection": "desc",
  "pageSize": 100
}

2. Store's revenue top-20

{
  "sellerId": "3628678",
  "sortField": "revenue",
  "sortDirection": "desc",
  "pageSize": 20
}

3. High-turnover star products

{
  "sellerId": "3628678",
  "filters": [
    {"field": "sales", "op": "GTE", "value": 30},
    {"field": "turnover_days", "op": "LTE", "value": 20}
  ],
  "sortField": "revenue",
  "sortDirection": "desc"
}

4. Stockout pain points for the store

{
  "sellerId": "3628678",
  "filters": [{"field": "lost_profit", "op": "GTE", "value": 100000}],
  "sortField": "lost_profit",
  "sortDirection": "desc"
}

5. USD-converted store audit

{
  "sellerId": "3628678",
  "currency": "USD",
  "sortField": "revenue",
  "sortDirection": "desc"
}

Display Rules

  1. Compact store table — key columns: productId, title, brand, price, monthlySalesUnits, monthlySalesRevenue, rating, balance, turnoverDays, lostProfit, position.
  2. Revenue share = within this seller query — 0-100%; clarify the base.
  3. Russian titles — preserve; translate on user request.
  4. Currency labeling — if converted, note "已按 USD 换算".
  5. Pagination — for stores with thousands of SKUs, suggest tighter filters before paging deep.
  6. No buying advice — the skill shows the store's book, not whether their SKUs are worth copying.

Important Limitations

  • Numeric seller ID only — passing a seller name will not resolve; go through mpstats-ozon-product-search first.
  • Page cap — max 100 rows per page.
  • T-1 dataendDate cannot be today or a future date.
  • No business advice — data-only.
  • Ozon-only — Wildberries / other Russian marketplaces are separate.

User Expression & Scenario Quick Reference

Applicable — Seller-scoped Ozon product metrics:

User Says Scenario
"Show me everything seller 3628678 sells, by sales" Store SKU map
"What are this Ozon store's top revenue products" Store bestseller drill
"How many SKUs does the store have with turnover \x3C20 days" Operational health filter
"Where is this store losing money to stockouts" Lost-profit scan
"Compare two Ozon stores' SKU counts and sales" Store-vs-store benchmarking (call twice)

Not applicable — Needs beyond seller drill-down:

  • Only seller name known → use mpstats-ozon-product-search to resolve the ID
  • Brand-scoped drill → mpstats-ozon-brand-products
  • Category-scoped drill → mpstats-ozon-category-products
  • Single-SKU time-series → mpstats-ozon-product-trend
  • Wildberries / other Russian marketplaces → not covered

Boundary judgment: Use this skill when the dimension is a specific seller and you want the per-SKU table under that shop. For "who are the top sellers in category X" you'd use category drill-down and group by seller client-side.

Feedback:

Auto-detect and report feedback via the Feedback API when any of the following apply:

  1. The functionality or purpose described in this skill does not match actual behavior
  2. The skill's results do not match the user's intent
  3. The user expresses dissatisfaction or praise about this skill
  4. Anything you believe could be improved

Call the feedback API as specified in references/api.md. Do not interrupt the user's flow.


For more high-quality, professional cross-border e-commerce skills, set LinkFox Skills.

安全使用建议
Before installing, confirm you trust LinkFox with your API key and Ozon seller query parameters. Keep the API key private, avoid including confidential information in feedback, and treat returned marketplace analytics as data rather than business advice.
功能分析
Type: OpenClaw Skill Name: linkfox-mpstats-ozon-seller-products Version: 1.0.0 The skill bundle is a legitimate tool for retrieving Ozon seller product data via the LinkFox API. The Python script (mpstats_ozon_seller_products.py) and documentation (SKILL.md, api.md) are well-structured, lack obfuscation, and perform only the stated functions of querying the 'tool-gateway.linkfox.com' endpoint and providing feedback to 'skill-api.linkfox.com'.
能力标签
requires-sensitive-credentials
能力评估
Purpose & Capability
The documented behavior and script both focus on retrieving MPSTATS/Ozon seller product metrics by sellerId, matching the stated product-sourcing and competitor-store analysis purpose.
Instruction Scope
The skill includes a separate feedback-reporting API reference; this appears disclosed, but users should be aware that feedback content may be sent outside the main analytics endpoint.
Install Mechanism
There is no install spec and the included Python script uses only standard-library modules; no package installation, remote installer, eval, or shell execution is shown.
Credentials
The runtime needs LINKFOXAGENT_API_KEY even though registry requirements list no required env vars or primary credential. The credential use is disclosed in the docs and script and is proportionate to the API integration.
Persistence & Privilege
No persistence, background worker, privilege escalation, local file indexing, credential storage, or long-running autonomous behavior is shown.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install linkfox-mpstats-ozon-seller-products
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /linkfox-mpstats-ozon-seller-products 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release
元数据
Slug linkfox-mpstats-ozon-seller-products
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Mpstats Ozon Seller Products 是什么?

MPSTATS Ozon 俄罗斯站按卖家 ID 下钻商品列表。返回该卖家下全部 SKU 的销量、销售额、价格、评分、库存、周转、损失销售额等完整指标,支持多维数值筛选、排序、货币换算。用于店铺结构分析、卖家爆款拆解、竞争对手店铺对标。当用户提到 Ozon 卖家商品、Ozon 店铺分析、Ozon 卖家下钻、Ozon... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 28 次。

如何安装 Mpstats Ozon Seller Products?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install linkfox-mpstats-ozon-seller-products」即可一键安装,无需额外配置。

Mpstats Ozon Seller Products 是免费的吗?

是的,Mpstats Ozon Seller Products 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Mpstats Ozon Seller Products 支持哪些平台?

Mpstats Ozon Seller Products 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Mpstats Ozon Seller Products?

由 linkfox-ai(@linkfox-ai)开发并维护,当前版本 v1.0.0。

💬 留言讨论