价格、SKU、评论, 问的那一刻现拉
电商平台每天调价,评论每小时都在涨,多数团队却还照着上周的导出表做决定。把 Anysite 接进你的智能体,你一问,它就把各个平台的价格、库存、商品结构和评论盯一遍。快照可以扔了。
能问什么,会回什么
追踪价格
提问:「把这 20 个 SKU 在几个大电商平台上的价格和评论数拉出来比一比。」
Anysite 匹配到 Amazon · Walmart · eBay · Best Buy,返回 20 个 SKU × 4 家店。
| SKU | Amazon | Walmart | eBay |
|---|---|---|---|
| WH-1000XM5 | $328 | $334 | $298 |
| Kindle 11 代 | $99 | $102 | $84 |
| DS-920+ | $549 | — | $512 |
评论挖掘
提问:「把竞品爆款最近 500 条评论读一遍——买家夸什么、骂什么?」
Anysite 匹配到 Amazon reviews · Walmart reviews,返回 500 条评论。
| 主题 | 提及量 | 情绪 |
|---|---|---|
| 续航衰减 | 132 | 投诉 |
| 音质 | 118 | 好评 |
| 配对设置 | 64 | 投诉 |
查市面价
提问:「现在 Vantrix A70 耳机哪家便宜——最近有没有质量投诉?」
Anysite 匹配到 price search · offers · reviews,返回 5 家店。
| 店铺 | 价格 | 库存 |
|---|---|---|
| Amazon | $219 | 有货 |
| Best Buy | $224 | 有货 |
| eBay | $198 | 库存少 |
今天的电商数据:过期导出、没人读的评论、企业级账单
货架每天都在动,多数团队一周才看一次。电商团队常撞的三堵墙,以及监控换成实时数据之后有什么不同。
对手一动,当天就知道
你一问,智能体就横向比各平台的价格、库存和评论数,把低价打击、目录空缺、评论增速异常挑出来,不用等每周那次刷新。客户的声音,替你读完
所有电商平台,一套目录
三步开始
Claude Code: $ claude mcp add --transport http anysite \ "https://mcp.anysite.io/mcp?api_key=YOUR_KEY" > registering tools … ✓ connected $ claude mcp list anysite http connected > the same catalog is available over REST — > see the REST tab, no MCP client required > every source included on every plan > nothing to install, nothing to keep running ✓ ready
Cursor: { "mcpServers": { "anysite": { "url": "https://mcp.anysite.io/mcp?api_key=YOUR_KEY", "transport": "http" } } } > goes in ~/.cursor/config.json > type /mcp in Cursor to see the tools appear > the same block works in any MCP client ✓ connected
REST: curl -X POST "https://api.anysite.io/api/people/profile" \ -H "access-token: YOUR_TOKEN" \ -H "Content-Type: application/json" \ -d '{"url": "https://.../in/username"}' > one POST, one auth header, a typed profile back import requests headers = {"access-token": "YOUR_TOKEN"} r = requests.post("https://api.anysite.io/api/people/profile", headers=headers, json={"url": "https://.../in/username"}) print(r.json()["headline"])
大白话: 把这 20 个 SKU 在 Amazon、Walmart 和 eBay 上的价格和评论数比一比。 > no query language > no endpoint IDs > no field mapping > no pagination to handle > no maintenance when a source changes ✓ the agent decides which endpoints to call
智能体调用了什么: ⏺ tool · anysite-mcp > Endpoints matched — people search · profiles · email finder > Filling parameters from the brief … > geo US > industry fintech > founded > 2021 > role head of growth > email verified only > Paging through results … > Deduplicating by company domain … > Typed fields, one schema per source ✓ Data ready — 50 prospects ✓ 50 rows ready for the sequence
表格: Name Role Company Email A. Rivera Head of Growth Finlo a.rivera@finlo.io J. Chen VP Growth Cartora j.chen@cartora.com M. Okafor Head of Growth Nexbill m.okafor@nexbill.io L. Fontaine Head of Growth Paylane l.fontaine@paylane.io S. Bergman Growth Lead Truffle s.bergman@truffle.fi D. Almeida Head of Growth Norvex d.almeida@norvex.io K. Ivarsson VP Growth Kolibri k.ivarsson@kolibri.se R. Haddad Head of Growth Sparkpay r.haddad@sparkpay.io T. Nowak Growth Lead Vireo t.nowak@vireo.pl E. Duarte Head of Growth Belmonte e.duarte@belmonte.io > sample rows · request_id req_abc123
JSON: [ { "name": "A. Rivera", "role": "Head of Growth", "company": "Finlo", "email": "a.rivera@finlo.io" }, { "name": "J. Chen", "role": "VP Growth", "company": "Cartora", "email": "j.chen@cartora.com" }, { "name": "M. Okafor", "role": "Head of Growth", "company": "Nexbill", "email": "m.okafor@nexbill.io" } ] > sample records · request_id req_abc123
设一次,智能体就一直照着跑
常驻剧本,通过 MCP 交给智能体定时跑。结果直接落到你本来就在用的地方,一周下来做的是决策,不是收集数据。
站会之前,降价和断货就进了 Slack
周一的调价决定,从今天的货架起算
客户声音简报,用当月评论重画一遍
每层货架,实时盯住
所有电商平台的价格、库存、评论,查的时候现拉。本页每一个流程都跑在你的智能体里,走 MCP,每月 $30 起,固定价,7 天免费试用。想在自己的代码里用同一套目录?REST 和 CLI 共用一把 API key,每月 $49 起。
常见问题
说实话:定时这件事在你智能体那边,不在 Anysite。你在 Claude 里建个定时任务,任何能按时间跑的智能体都行。每跑一次,它就通过 MCP 从 Anysite 拉当天的价格、库存和评论,再自己负责送达:告警发到 Slack、把行追加到 Sheet、更新简报。Anysite 是实时数据层,调度归智能体管。