Пропустите установку. Заработает меньше чем за 2 минуты.
Начните бесплатный период на cloud.anythingmcp.com, добавьте eBay Sell одним кликом и направьте свой ИИ-клиент (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.
Предварительные требования
Полные инструкции по настройке встроены в коннектор (видны в магазине при выборе коннектора). Требуемые переменные окружения:
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 — Установите адаптер
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 читает MCP-серверы из ~/.gemini/settings.json (или %APPDATA%\gemini\settings.json в Windows). Добавьте:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Получите MCP API key в AnythingMCP → Profile → MCP API Keys → New Key.
- Сохраните файл и перезапустите
gemini. - Запустите
/mcpв Gemini CLI —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 принимают MCP-коннекторы httpUrl с Bearer-заголовком.
Следующие шаги
Это руководство помогло?