Sailer Hub 把全部运营能力封装成 MCP。装上后,Claude 等 AI 就能通过统一接口读写 Amazon、Wayfair、Etsy、eBay、Shopify 等平台——订单、库存、Listing、广告、定价、评价,全都能操作。Sailer Hub exposes every operation as MCP. Once installed, an AI like Claude can read and act across Amazon, Wayfair, Etsy, eBay and Shopify through one interface — orders, inventory, listings, ads, pricing and reviews.
把 YOUR_TOKEN 换成你在 Sailer Hub 控制台里的 API Token 即可。Replace YOUR_TOKEN with your Sailer Hub API token from the console.
claude mcp add sailerhub --env SAILERHUB_TOKEN=YOUR_TOKEN -- npx -y github:Sailerpartners/sailerhub-mcp
{
"mcpServers": {
"sailerhub": {
"command": "npx",
"args": ["-y", "github:Sailerpartners/sailerhub-mcp"],
"env": { "SAILERHUB_TOKEN": "YOUR_TOKEN" }
}
}
}四步,让你的 AI 开始运营。Four steps to put your AI to work.
登录 Sailer Hub 控制台,复制你的 API Token。Log in to the Sailer Hub console and copy your API token.
上面的一行命令,或把配置粘进客户端。Run the one-liner, or paste the config into your client.
(可选)装上运营 Skill,AI 就懂怎么把系统用好。(Optional) add the operating Skill so the AI knows how to run it well.
直接对 AI 说"看看 Wayfair 订单""同步库存",它就做。Just tell the AI "check Wayfair orders" or "sync inventory".
Your AI ──MCP──▶ sailerhub-mcp ──HTTPS──▶ Sailer Hub API ──▶ Executor ──▶ Amazon / Wayfair / Etsy / eBay / Shopify …读工具直接返回数据;action 工具下发任务,由 Sailer Hub 执行器落地(有官方 API 走 API,没有的用 AI 操作后台)——始终遵守各平台规则。每个工具对应一个 REST 端点。Read tools return data directly; action tools create tasks the Sailer Hub executor carries out (official API where available, AI back-office where not) — always within platform rules. Each tool maps to a REST endpoint.
| 工具Tool | REST | 说明Description |
|---|---|---|
dashboard_summary | GET /api/dashboard/summary | 销售/订单/广告花费/ACOS 总览 + 告警Sales / orders / ad-spend / ACOS + alerts |
list_stores | GET /api/stores | 所有已接入店铺 + 授权状态Connected stores + auth status |
integrations_overview | GET /api/integrations | 每店凭证缺口 + 同步状态Credential gaps + sync state |
list_orders / get_order | GET /api/orders | 多平台订单Orders across platforms |
list_listings | GET /api/listings | 产品刊登Product listings |
list_inventory | GET /api/inventory | 多仓库存Inventory across warehouses |
list_ad_campaigns | GET /api/ads/campaigns | 广告 CampaignAd campaigns |
finance_summary | GET /api/finance/summary | 回款/费用/广告/净额Payout / fees / ad-spend / net |
list_reviews | GET /api/reviews | 评价(可筛差评/未回)Reviews (low / unanswered) |
list_tasks | GET /api/tasks | AI 任务中心AI task center |
test_connectionaction | POST /api/integrations/:id/test | 验证店铺连接Verify a store connection |
sync_storeaction | POST /api/integrations/:id/sync | 立即同步某数据域Pull latest for a domain |
update_listing_priceaction | POST /api/listings/:id/actions | 改价Change a listing price |
respond_reviewaction | POST /api/reviews/:id/actions | 回复评价Reply to a review |
create_taskaction | POST /api/tasks | 高级:自定义任务Advanced: raw task |
鉴权:所有请求带 Authorization: Bearer <token>。完整源码与工具 schema 见 GitHub 仓库。Auth: every request carries Authorization: Bearer <token>. Full source and tool schemas on GitHub.
装上 MCP,登录取 Token,让 AI 直接开始运营。Install the MCP, grab a token, and let AI start operating.
GitHub 登录取 Token →Get your token →