eBay Sell
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.
7 天免费 · 无需信用卡 · EU 托管
问 eBay 任何事
通过 AnythingMCP 对 eBay Sell 试一个真实提示 — Claude 调用工具并返回答案。在你的消息上按 Enter 即可在 Cloud 安装。
在 Cloud 上安装 eBayClaude 是 AI,可能会出错。请核对回答。
2 分钟设置
- 1在 cloud.anythingmcp.com 开始免费试用。
- 2在连接器商店点击 eBay Sell。提示时粘贴凭据。
- 3生成 MCP API 密钥,将 AI 客户端指向生成的 MCP URL。
配置 eBay Sell
直接来自连接器定义:在哪里获取凭据、需要哪些权限,以及该适配器调用的是哪个 API。 由连接器作者以英文提供。
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. AnythingMCP mints access tokens from it (access tokens expire in two hours, which is why the refresh token is the thing to store). - Set
EBAY_MARKETPLACE_IDto the marketplace the seller trades on, e.g.EBAY_DE,EBAY_US,EBAY_GB. eBay reads it from theX-EBAY-C-MARKETPLACE-IDheader and answers differently per marketplace.
Sandbox is a separate host. This adapter points at api.ebay.com (production). The sandbox lives at api.sandbox.ebay.com with its own keyset and its own tokens; a production token there fails with a confusing 401.
Inventory vs Trading. The Sell Inventory API only sees listings created through it or migrated into it. A long-established seller whose listings were created with the legacy Trading API may find ebay_sell_list_inventory_items almost empty while their eBay shop is full — that is expected, and the migration is a one-time API call eBay documents.
Limits: most Sell endpoints allow a few thousand calls a day per application. Pace bulk work.
Writes: ebay_sell_update_offer_price changes a live listing's price, which buyers see immediately.