跳过安装。2 分钟内即可运行。
在 cloud.anythingmcp.com 开始免费试用,一键添加 eBay Sell,然后将你的 AI 客户端(Claude、ChatGPT、Copilot 或 Cursor)指向生成的 MCP 端点。无需 Docker,无需 git clone,无需任何工程经验。
Summary
eBay's Sell APIs for merchants: inventory items and offers, orders and fulfilment, payment disputes, and the seller's own account policies. OAuth 2.0 user token against the production marketplace.
试试这样问
eBay Sell 的示例提示
点击任意提示即可复制,然后粘贴到 Claude、ChatGPT、Cursor、Gemini、Copilot 或 OpenClaw 中,在该连接器上运行。
Claude 是 AI,可能会出错。请核对回答。
💡 无需安装? 直接使用 cloud.anythingmcp.com。 登录、点击 Connectors → eBay Sell、粘贴凭证、生成 MCP API key — 完成。无 Docker、无
git clone、无本地服务器。
eBay Sell + Gemini
eBay's Sell APIs for merchants: inventory items and offers, orders and fulfilment, payment disputes, and the seller's own account policies. OAuth 2.0 user token against the production marketplace.
前提条件
完整的设置说明已内置在连接器中 (在 store 中选择连接器时可见)。所需环境变量:
EBAY_CLIENT_ID, EBAY_CLIENT_SECRET, EBAY_REFRESH_TOKEN, EBAY_MARKETPLACE_ID
步骤 1 — 获取凭证
Getting a token — the Sell APIs need a user token, not an application token.
- Register at developer.ebay.com and create a production keyset. Note the App ID (client id), Cert ID (client secret) and an RuName (redirect URI name).
- Run the authorization-code grant once for the seller account, requesting the scopes you need:
sell.inventory,sell.fulfillment,sell.account, optionally read-only variants. eBay's OAuth documentation has a browser-based token tool for this. - Keep the refresh token — it lasts around 18 months — and set
EBAY_CLIENT_ID,EBAY_CLIENT_SECRETandEBAY_REFRESH_TOKEN. …
步骤 2 — 安装 adapter
curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
步骤 3 — 在 Gemini 中添加连接器
Gemini CLI 从 ~/.gemini/settings.json (Windows: %APPDATA%\gemini\settings.json) 读取 MCP 服务器。添加:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- 从 AnythingMCP 获取你的 MCP API key。
- 保存文件并重启
gemini。 - 在 Gemini CLI 中运行
/mcp—eBay Sell应显示为可用。 - Vertex AI Studio: 将
https://cloud.anythingmcp.com/mcp传入请求的tools数组,使用相同的 Bearer 头。
可用工具
| Tool | What it does |
|---|---|
ebay_sell_list_orders | List orders with their buyer, line items, totals, payment status and fulfilment status |
ebay_sell_get_order | Read one order in full: every line item with SKU and price, the buyer, the shipping address, the payment summary and the fulfilment instruct |
ebay_sell_list_inventory_items | List inventory items — the SKU-level product records behind Sell-API listings |
ebay_sell_get_inventory_item | Read one inventory item by SKU: its product details, condition, package dimensions and available quantity per fulfilment channel |
ebay_sell_list_offers | List the offers (listings) for one SKU, with their marketplace, format, price, listing status and listing id |
ebay_sell_list_fulfillment_policies | List the seller's fulfilment (shipping) policies for the configured marketplace, with their services, costs and handling times |
ebay_sell_list_return_policies | List the seller's return policies: whether returns are accepted, the return window, and who pays the shipping |
ebay_sell_list_payment_disputes | List payment disputes opened against the seller, with the reason, amount, status and the deadline to respond |
ebay_sell_get_privileges | Read the selling privileges of the account: whether selling is enabled and what the current selling limits on quantity and value are |
ebay_sell_update_offer_price | Change the price of a live offer |
FAQ
Gemini 1.5 Pro 或 2.x 支持 MCP 吗? 支持 — Gemini CLI ≥ 0.4 与 Vertex AI tools API 均接受带 Bearer 头的 MCP httpUrl 连接器。
下一步
这份指南对你有帮助吗?