Install
openclaw skills install @linkfox-ai/linkfox-lanjing-mercado-product-selectionMercado Libre(美客多)选品数据查询与分析,通过 LinkFox 网关统一调用蓝鲸 24 个商品、官链、关键词、类目、趋势、店铺、评论、汇率与套餐用量工具,覆盖墨西哥、巴西、阿根廷、智利、哥伦比亚站点。当用户提到 Mercado Libre、美客多、蓝鲸选品、Lanjing、美客多选品、商品搜索、类目趋势、关键词热搜、流量词反查、店铺查询、评论查询、汇率、套餐用量时触发此技能。
openclaw skills install @linkfox-ai/linkfox-lanjing-mercado-product-selectionThis skill queries Mercado Libre product, catalog, keyword, category, trend, seller, review, exchange-rate, and plan-usage data through the LinkFox gateway. The gateway exposes one unified route, POST /lingdong/call, and the skill selects one of 24 supported toolName values with matching arguments.
${LINKFOX_TOOL_GATEWAY}/lingdong/call. Do not call the upstream Lanjing XP-MCP server directly, and do not ask the user for upstream secret-key / X-API-Key — upstream credentials are owned by the backend.{"toolName":"...","arguments":{...}}. The script takes this whole object as a single JSON argument.arguments must match references/lanjing-mercado-tool-reference.md exactly, including camelCase names such as siteId, itemId, productId, categoryId, runDate, runMonth, pageNo, pageSize.data first when presenting results. Read contentText when data is text or ambiguous. Show rawResponse only when the user asks for raw diagnostics.16000 tokens per call; free tools cost 0. Trust the backend costToken field.references/api.md: LinkFox gateway contract, request/response structure, error codes, curl example, and Feedback API.references/lanjing-mercado-tool-reference.md: detailed Chinese reference for the 24 Mercado Libre tools — parameters, site IDs, pagination, sorting, and billing status.| User intent | Use these tools |
|---|---|
| Product detail, product sales history, product search | itemInfo, itemHistory, itemSearch |
| Catalog/product page detail, catalog sales history, catalog search | catalogInfo, catalogHistory, catalogSearch |
| Daily/monthly hot keywords and reverse traffic keywords | keywordDateSearch, keywordMonthSearch, keywordReverse |
| Category lookup before paid analysis | categorySearch, categorySmallSearch |
| Category brand, item, seller, new item, price, sales, sold-history, statistics, warehouse distribution | trendBrandTopBrand, trendBrandTopItem, trendBrandTopSeller, trendNewItems, trendPrice, trendSale, trendSoldHis, trendStatistical, trendStoreInventoryType |
| Seller search | sellerSearch |
| Product reviews | reviewSearch |
| Exchange rate and package usage | rateInfo, myUsage |
Free tools: categorySearch, categorySmallSearch, reviewSearch, rateInfo, myUsage. All others are paid.
toolName (string, required): one of the 24 tools above.arguments (object, required): the tool's parameter object. Must be a JSON object, not an array/string/number. The backend strips uId/uid/memberId and trims empty values.MLM (Mexico), MLB (Brazil), MLA (Argentina), MLC (Chile), MCO (Colombia — only for tools whose reference explicitly lists it).categoryId, call categorySearch or categorySmallSearch first, then use the returned category ID for paid trend/product/catalog tools.reviewSearch takes itemId only (no siteId). myUsage takes {}.POST /lingdong/call(完整参数/响应/错误码见 references/api.md)python scripts/linkfox_lanjing_mercado_product_selection.py '<JSON 参数>' [--inline]输出策略(脚本默认行为):
<cwd>/linkfox/<YYYY-MM-DD>/<session>/data/linkfox-lanjing-mercado-product-selection-<timestamp>.json(<cwd> 为脚本执行时的工作目录,在 Claude Code 里即当前项目目录;<session> 取自环境变量 SESSION_ID,按用户任务自动聚合;禁止写入 /tmp,当前目录不可写则报错)total/costToken、最大列表字段的长度 + 前 3 条样本)--inline 强制全量打印到 stdout(同样落盘)读数据建议:先看摘要判断是否足够;需要具体字段时优先用 jq或ConvertFrom-Json 从保存的 json 文件按需抽取,避免整份 JSON 进入上下文。
The single JSON argument is the full payload {"toolName":...,"arguments":{...}}.
# Free: search Mexico categories by name
python scripts/linkfox_lanjing_mercado_product_selection.py '{"toolName":"categorySearch","arguments":{"siteId":"MLM","searchText":"Auriculares"}}'
# Paid: product detail for a real MLM item
python scripts/linkfox_lanjing_mercado_product_selection.py '{"toolName":"itemInfo","arguments":{"siteId":"MLM","itemId":"MLM4979447466"}}'
# Free: my plan usage (no arguments)
python scripts/linkfox_lanjing_mercado_product_selection.py '{"toolName":"myUsage","arguments":{}}'
# Paid: monthly hot keywords for Brazil, 2026-06
python scripts/linkfox_lanjing_mercado_product_selection.py '{"toolName":"keywordMonthSearch","arguments":{"siteId":"MLB","runMonth":"202606"}}'
On PowerShell, wrap the JSON in single quotes the same way; if quoting is troublesome, write the payload to a file and pass it via --inline after loading, or use ConvertTo-Json to build the argument.
toolName.references/lanjing-mercado-tool-reference.md.data; use real responses and references/api.md as the source of truth instead of forcing a single table schema.| User says | Likely action |
|---|---|
| "查这个美客多商品", "商品详情", "销量历史" | Use itemInfo or itemHistory |
| "搜墨西哥站耳机", "筛选商品" | Use itemSearch; use categorySearch first if only category text is known |
| "官链", "catalog", "目录链接" | Use a catalog* tool |
| "关键词热搜", "月度词", "流量词反查" | Use keywordDateSearch, keywordMonthSearch, or keywordReverse |
| "类目趋势", "新品机会", "销量分布", "品牌排行" | Resolve categoryId, then use a trend* tool |
| "店铺", "seller" | Use sellerSearch |
| "评论", "reviews" | Use reviewSearch |
| "汇率", "套餐用量" | Use rateInfo or myUsage |
Auto-detect and report feedback via the Feedback API when the skill behavior, documentation, or result presentation does not match the user's intent, when the user expresses praise or dissatisfaction, or when a concrete improvement is visible. Follow references/api.md; do not interrupt the user's task and do not report secrets, private data, or complete large responses.
For more high-quality, professional cross-border e-commerce skills, visit LinkFox Skills.