Plati MCP Search Skill
Prerequisite: install the MCP server package:
INLINECODE0
Configure an MCP server named plati-scraper in your local OpenClaw/Claude config:
INLINECODE2
If your MCP client hangs on initialize, run server with debug stderr enabled:
INLINECODE3
Workflow
- 1. Call MCP tool
find_cheapest_reliable_options with:
-
query: user search intent
-
limit: requested lots count (default 20)
-
sort_by:
price_asc (default),
price_desc,
seller_reviews_desc,
reliability_desc,
title_asc,
title_desc
-
min_reviews: optional seller reliability filter (default 0)
-
min_positive_ratio: optional seller reliability filter (default 0)
-
min_price /
max_price: optional numeric range
-
include_terms /
exclude_terms: optional token filters
-
max_pages: default 6 for broader scan
- 2. Treat response as raw market data:
- each lot includes
options[]
- each option group includes all visible
variants[]
- each variant has computed
price_if_selected
- 3. Apply plan/duration/account-type filtering in the agent, not in MCP tool.
- Include clickable listing links and selected option text in final output.
- Clearly state filters used by the agent.
Output format (Telegram-friendly)
Do not use markdown tables or code blocks for final user messages.
Return only a short numbered list with readable text and working links:
INLINECODE24
INLINECODE25
After the list, add one short summary line:
INLINECODE26
If links are present in MCP results, always include direct lot links in each list item.
Plati MCP 搜索技能
前提条件:安装 MCP 服务器包:
npm i -g plati-mcp-server
在本地 OpenClaw/Claude 配置中配置名为 plati-scraper 的 MCP 服务器:
command: plati-mcp-server
如果 MCP 客户端在初始化时挂起,请启用调试 stderr 运行服务器:
PLATIMCPSTDERR=1 plati-mcp-server
工作流程
- 1. 使用以下参数调用 MCP 工具 findcheapestreliable_options:
- query:用户搜索意图
- limit:请求的批次数量(默认 20)
- sort
by:priceasc(默认)、price
desc、sellerreviews
desc、reliabilitydesc、title
asc、titledesc
- min_reviews:可选的卖家可靠性筛选(默认 0)
- min
positiveratio:可选的卖家可靠性筛选(默认 0)
- min
price / maxprice:可选的数值范围
- include
terms / excludeterms:可选的令牌过滤器
- max_pages:默认 6 用于更广泛的扫描
- 2. 将响应视为原始市场数据:
- 每个批次包含 options[]
- 每个选项组包含所有可见的 variants[]
- 每个变体具有计算出的 price
ifselected
- 3. 在代理中应用计划/时长/账户类型筛选,而非在 MCP 工具中。
- 在最终输出中包含可点击的列表链接和所选选项文本。
- 清晰说明代理使用的筛选条件。
输出格式(Telegram 友好)
最终用户消息中不要使用 Markdown 表格或代码块。
仅返回带有可读文本和有效工作链接的简短编号列表:
- 1. <名称> — <价格>, <期限>, <卖家> (<评分/评价>). 链接:
- 2. ...
列表后添加一行简短摘要:
已检查 X 个批次,根据您的条件选出 Y 个最佳选项。
如果 MCP 结果中包含链接,请始终在每个列表项中包含直接批次链接。