This server provides a full eBay buyer-side workflow integration, enabling search, watchlist management, bidding, and purchasing through a safety-gated MCP interface.
Search & Item Discovery
search— Search eBay listings by keyword with filters for category, condition, price range, currency, sort order, and marketplaceget_item— Fetch full details for a specific item by ID, including description, shipping, seller info, and return terms
MyeBay Reading
get_watchlist— View your currently watched itemsget_active_bids— See auctions where you have active bidsget_won_items/get_purchase_history— List items won or purchasedget_lost_items— View auctions you bid on but didn't win
Watchlist Management
add_to_watchlist/remove_from_watchlist— Manage your eBay watchlist (reversible, no money committed)
Money-Committing Actions (safety-gated: confirm-amount match, $500 cap, human-in-the-loop OS dialog)
place_bid— Place a proxy bid on an auctionbuy_now— Instantly purchase a Buy It Now listingmake_best_offer— Submit a Best Offer on eligible listings
Authentication
start_user_auth/complete_user_auth— OAuth2 flow to obtain and manage user tokens
Server Management
server_info— Get server version, active host (sandbox/production), and config locationslist_hosts— List all configured hosts with their status and credential availability
Allows interacting with eBay's APIs to search items, manage watchlist, place bids, buy items, and retrieve purchase history.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ebay-mcpsearch for vintage leather jacket"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ebay-mcp
MCP server for eBay buyer-side workflows: search, watch, bid, buy, manage MyeBay. Hybrid stack — modern Buy/Browse REST API for search and item lookup, legacy Trading API (still functional in 2026) for everything stateful.
⚠️ Beta (v0.5.0). Browse + Trading APIs wired, sandbox + production both supported. All 15 tools are production live-verified — including the three money-commit tools which have been used to close real eBay transactions through the safety stack (confirm-amount gate + $500 cap + OS-modal Yes/No dialog). Read the money commits section before enabling production.
Scope
Read-only (low risk)
search,get_item(Browse API)get_watchlist,get_active_bids,get_won_items,get_lost_items,get_purchase_history(Trading API)
Watchlist writes (low risk — no money commit)
add_to_watchlist,remove_from_watchlist
Money commits (high risk — safety-gated)
place_bid(item_id, max_bid_amount, confirm_amount, ...)— TradingPlaceOfferwithAction=Bid. Proxy bid on an auction.buy_now(item_id, confirm_amount, ...)— TradingPlaceOfferwithAction=Purchase. Commits to a Buy-It-Now sale.make_best_offer(item_id, offer_amount, confirm_amount, ...)— TradingPlaceOfferwithAction=BestOffer. Submits an offer the seller can accept/counter/decline.
Safety stack (every money tool):
Confirm-amount gate. Every call requires
confirm_amountexactly equal to the bid/buy/offer amount. The LLM has to repeat the dollar figure; mismatches return a structured refusal payload (not an exception) so the LLM can read it and retry with corrected params.$500 per-call cap. Amounts above $500 refuse with
reason: "cap_exceeded". Two ways to authorize a higher spend:Per-call: pass
max_bid_override >= amounton the tool call. Lower overrides refuse withreason: "override_too_low".Operator-wide: set
EBAY_MCP_ALLOW_HIGH_VALUE=1in the MCP server's environment.
Human-in-the-loop confirm dialog. After the programmatic gates clear, the MCP pops a topmost, system-modal Yes/No dialog (Windows:
MessageBoxWvia ctypes; macOS/Linux:tkinter.messagebox) showing the tool, host, item ID, amount, currency, and quantity. The default button is NO, ESC cancels, and there is no auto-dismiss or timeout. Click YES to send the call to eBay; anything else returns areason: "user_declined"refusal and no Trading call fires. There is intentionally no env-var bypass — tests stub the dialog directly. Production-host dialogs carry a*** PRODUCTION HOST — REAL MONEY ***header; sandbox dialogs saySandbox host (no real money)..Active-host visibility. Successful calls against
default_host = "production"include awarningfield in the response ("PRODUCTION HOST — this call committed real money on eBay.").server_info()flags the active host before any call.No silent half-commits. No auth token cached → the underlying Trading API call raises before touching eBay, not mid-flight.
All money tools also surface eBay-side errors (insufficient bid, currency mismatch, listing ended, etc.) as TradingApiError with the parsed Errors block attached.
Out of scope (v0)
❌ Selling side (use eBay's Sell API directly for that — different shape entirely)
❌ Snipe-bidding with auto-trigger (one tool call = one bid, no scheduling)
❌ Multi-account: v0 is one user account per host config; add multi-account later if needed
Related MCP server: eBay MCP Server by CData
Install
Not yet on PyPI. From source:
git clone https://github.com/acato/ebay-mcp
cd ebay-mcp
uv sync
uv run ebay-mcpWindows: avoid Microsoft Store Python
If uv picks Microsoft Store Python (path under \WindowsApps\PythonSoftwareFoundation...) when creating the venv, the MCP runs fine from a terminal but fails to launch from GUI hosts like the Claude desktop app, IDE extensions, or scheduled tasks. You will see:
Unable to create process using "...\WindowsApps\PythonSoftwareFoundation.Python.3.12_...\python.exe"Pin uv to a non-Store interpreter — uv's managed Python is easiest:
uv python install 3.12
uv venv --python 3.12 --python-preference only-managed --clear
uv syncVerify: Get-Content .venv\pyvenv.cfg — the home = line should point under AppData\Roaming\uv\python\..., not \WindowsApps\.
Configure
Sandbox-first. Get your sandbox keyset from developer.ebay.com → Application Keysets → Sandbox. Copy examples/config.toml to ~/.config/ebay-mcp/config.toml:
default_host = "sandbox"
[hosts.sandbox]
app_id = "..." # SBX App ID (Client ID)
dev_id = "..." # Developer Account Dev ID
cert_id = "..." # SBX Cert ID (Client Secret) — env var preferred
redirect_uri = "https://localhost/oauth/callback"
# [hosts.production]
# app_id = "..."
# dev_id = "..."
# cert_id = "..."
# redirect_uri = "https://localhost/oauth/callback"Per-host env vars override file values:
EBAY_MCP_<HOST>_CERT_ID— overridescert_id(recommended for production)EBAY_MCP_<HOST>_APP_ID,EBAY_MCP_<HOST>_DEV_ID— overrides for completeness
User-level OAuth tokens cache to ~/.config/ebay-mcp/token-cache-<host>.json automatically after the manual authorization-code flow (see auth.py docs once Day 1b lands).
Use with Claude Code
claude mcp add ebay-mcp -- uv run --directory /path/to/ebay-mcp ebay-mcpUse with Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"ebay-mcp": {
"command": "C:\\Users\\you\\AppData\\Local\\Microsoft\\WinGet\\Links\\uv.exe",
"args": ["run", "--directory", "C:\\path\\to\\ebay-mcp", "ebay-mcp"]
}
}
}Documentation
DESIGN.md — architecture, tool surface, safety patterns, OAuth flow
CONTRIBUTING.md — dev setup, sandbox testing, release process
License
Apache 2.0. See LICENSE and NOTICE.
Trademarks
"eBay" is a trademark of eBay Inc. This project is an independent integration with the standard eBay public APIs and is not affiliated with, endorsed by, or sponsored by eBay Inc.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/acato/ebay-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
