pp-ebay
Original:🇺🇸 English
Translated
Printing Press CLI for eBay. Discovery and intelligence: sold-comp pricing (average sale price over 90 days with outlier trim), auctions filtered by bid count and ending window (the query the eBay site can no longer answer), watchlists, saved searches, and a local SQLite store for cross-listing analytics. Trigger phrases: 'comp this card', 'find ebay auctions ending soon', 'what did this sell for', 'find listings under $X for ...'. Bid placement (bid, snipe, bid-group) is experimental and currently fails because eBay step-ups auth on /bfl/placebid -- direct the user to bid in the browser.
3installs
Added on
NPX Install
npx skill4agent add mvanhorn/printing-press-library pp-ebayTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →eBay — Printing Press CLI
Prerequisites: Install the CLI
This skill drives the binary. You must verify the CLI is installed before invoking any command from this skill. If it is missing, install it first:
ebay-pp-cli- Install via the Printing Press installer:
bash
npx -y @mvanhorn/printing-press install ebay --cli-only - Verify:
ebay-pp-cli --version - Ensure (or
$GOPATH/bin) is on$HOME/go/bin.$PATH
If the install fails (no Node, offline, etc.), fall back to a direct Go install (requires Go 1.23+):
npxbash
go install github.com/mvanhorn/printing-press-library/library/commerce/ebay/cmd/ebay-pp-cli@latestIf reports "command not found" after install, the install step did not put the binary on . Do not proceed with skill commands until verification succeeds.
--version$PATHUnique Capabilities
These capabilities aren't available in any other tool for this API.
Discovery and intelligence
-
— Search active auctions filtered by bid count and ending window (e.g. "Steph Curry cards with at least 3 bids ending in next hour"). The eBay site can no longer answer this query since the Finding API was retired in February 2025.
auctionsFinds price-discoverable competition windows where last-second bidding actually moves the price.bashebay-pp-cli auctions "Steph Curry rookie" --has-bids --ending-within 1h --json --select item_id,price,bids,time_left -
— Average sale price for any item over the last 90 days with smart matching, condition normalization, outlier trim, and percentile distribution.
compWhen pricing a bid (or deciding whether to even bother), you need the realistic distribution of recent sales, not a single anchor. Trim handles outliers; dedupe handles title variants.bashebay-pp-cli comp "Cooper Flagg /50 Topps Chrome" --trim --json --select mean,median,sample_size -
outlier trim — 1.5x IQR outlier trim on sold-comp results. Surfaces the realistic price band buyers should anchor on, with stddev and quartiles.
compTells you what a normal buyer actually paid versus a record sale or a fire-sale outlier.bashebay-pp-cli comp "Rolex Submariner 116610LN" --trim --json --select p25,median,p75,std_dev -
— Collapse near-duplicate sold listings to one exemplar per fingerprint (token-bag, order-insensitive).
comp --dedupe-variantsWithout dedupe, the comp distribution is biased toward whichever seller listed the same card 5 times.bashebay-pp-cli comp "Cooper Flagg /50" --dedupe-variants -
— Active listing search filtered by auction/BIN, condition, and price band.
listingsbashebay-pp-cli listings --nkw "PSA Mariners Griffey" --lh-bin 1 --udlo 10 --udhi 30
When to use
- User asks "what did this card / watch / item sell for" →
ebay-pp-cli comp "<title>" --trim - User asks "find auctions ending soon with bids" →
ebay-pp-cli auctions "<query>" --has-bids --ending-within 1h - User asks "find Buy It Now listings under $X for ..." →
ebay-pp-cli listings --nkw "<query>" --lh-bin 1 --udhi <max> - User asks "watch this listing" / "show my watchlist" →
ebay-pp-cli watch list - User asks to bid programmatically → explain the limitation (eBay step-ups auth on ); link them to bid in the browser. Do not run
/bfl/placebidorbidon their behalf.snipe
Anti-triggers
This CLI is NOT the right tool for:
- Placing bids. /
bid/snipeare experimental and fail end-to-end. Direct the user to bid in their browser.bid-group - Listing items as a seller (use the eBay Sell APIs / Seller Hub directly).
- Order fulfillment or shipping label generation.
- Bulk inventory management for sellers.
Known Limitations
- Bid placement (,
bid,snipe) cannot complete end-to-end because eBay step-ups auth onbid-groupfor cookie-only sessions. These commands are hidden from default/bfl/placebidand print a warning when invoked. Users should bid in the browser.--help - Rate limiting: Sustained scraping triggers eBay 403s. Recovery: and back off.
ebay-pp-cli auth refresh - Stub commands: Watchlist write paths, saved-search CRUD, feed, offer-hunter ship as "not yet implemented" stubs.
HTTP Transport
This CLI uses Chrome-compatible HTTP transport for browser-facing endpoints. It does not require a resident browser process for normal API calls.
Discovery Signals
This CLI was generated with browser-observed traffic context.
- Capture coverage: 15 API entries from 25 total network entries
- Protocols: html_scraping (95% confidence), rest_json (90% confidence)
- Auth signals: — cookies: cid, s, nonsession, dp1, ebaysid, ds1, ds2, shs, npii
- Generation hints: requires_browser_auth, requires_protected_client, uses_chrome_cookie_import, has_per_request_csrf, has_per_request_fraud_token
- Caveats: placebid_step_up: eBay redirects /bfl/placebid/<id> to sign-in for cookie-only sessions, so bid placement cannot complete from this CLI today; akamai_active: Akamai bot manager active — Surf must use Chrome TLS fingerprint or stdlib HTTP will be blocked; rate_limit: sustained scraping triggers 403s, recover with auth refresh and back off
Command Reference
deal — eBay Deals feed
- — Browse the eBay Deals feed
ebay-pp-cli deal
item — Item details
- — Get item detail by listing id
ebay-pp-cli item <itemId>
listings — Active listing search (HTML scrape of /sch/i.html)
- — Search active eBay listings by keyword
ebay-pp-cli listings
sold — Sold/completed listings (last 90 days, HTML scrape)
- — Search sold completed listings by keyword (90 day window)
ebay-pp-cli sold
watch — Watchlist (authenticated, read-only)
- — List items in the user's watchlist
ebay-pp-cli watch
Hand-written commands
- — Sold-comp intelligence: average sale price, distribution, trendline for items matching the query over the last 90 days.
ebay-pp-cli comp <query> - — Search active auctions filtered by bid count, ending window, condition. The 'has bids ending in next hour' query.
ebay-pp-cli auctions <query> - — Stream new listings matching a saved search, with sold-comp context appended to each item.
ebay-pp-cli feed <saved-search> - — Buying history (won, lost, paid) over a configurable window.
ebay-pp-cli history - — Local saved-search CRUD.
ebay-pp-cli saved-search
Hidden experimental commands
These commands exist in the binary but are excluded from because they currently fail end-to-end. Reach them by name (e.g. ) for details.
--helpebay-pp-cli snipe --help- — Place bids (experimental; eBay step-up auth blocks).
ebay-pp-cli bid - — Sniper bid (experimental; depends on bid flow).
ebay-pp-cli snipe <itemId> --max <amount> - — Coordinated multi-item snipe groups (experimental; depends on snipe).
ebay-pp-cli bid-group
Finding the right command
When you know what you want to do but not which command does it, ask the CLI directly:
bash
ebay-pp-cli which "<capability in your own words>"which02--helpAuth Setup
This CLI uses a browser session. Log in to .ebay.com in Chrome, then:
bash
ebay-pp-cli auth login --chromeRequires a cookie extraction tool ( via pip, or via Homebrew).
pycookiecheatcookiesRun to verify setup.
ebay-pp-cli doctorAgent Mode
Add to any command. Expands to: .
--agent--json --compact --no-input --no-color --yes-
Pipeable — JSON on stdout, errors on stderr
-
Filterable —keeps a subset of fields. Dotted paths descend into nested structures; arrays traverse element-wise. Critical for keeping context small on verbose APIs:
--selectbashebay-pp-cli deal --agent --select id,name,status -
Previewable —shows the request without sending
--dry-run -
Offline-friendly — sync/search commands can use the local SQLite store when available
-
Non-interactive — never prompts, every input is a flag
Response envelope
Commands that read from the local store or the API wrap output in a provenance envelope:
json
{
"meta": {"source": "live" | "local", "synced_at": "...", "reason": "..."},
"results": <data>
}Parse for data and to know whether it's live or local. A human-readable summary is printed to stderr only when stdout is a terminal — piped/agent consumers get pure JSON on stdout.
.results.meta.sourceN results (live)Agent Feedback
When you (or the agent) notice something off about this CLI, record it:
ebay-pp-cli feedback "the --since flag is inclusive but docs say exclusive"
ebay-pp-cli feedback --stdin < notes.txt
ebay-pp-cli feedback list --json --limit 10Entries are stored locally at . They are never POSTed unless is set AND either is passed or . Default behavior is local-only.
~/.ebay-pp-cli/feedback.jsonlEBAY_FEEDBACK_ENDPOINT--sendEBAY_FEEDBACK_AUTO_SEND=trueWrite what surprised you, not a bug report. Short, specific, one line: that is the part that compounds.
Output Delivery
Every command accepts . The output goes to the named sink in addition to (or instead of) stdout, so agents can route command results without hand-piping. Three sinks are supported:
--deliver <sink>| Sink | Effect |
|---|---|
| Default; write to stdout only |
| Atomically write output to |
| POST the output body to the URL ( |
Unknown schemes are refused with a structured error naming the supported set. Webhook failures return non-zero and log the URL + HTTP status on stderr.
Named Profiles
A profile is a saved set of flag values, reused across invocations. Use it when a scheduled agent calls the same command every run with the same configuration - HeyGen's "Beacon" pattern.
ebay-pp-cli profile save briefing --json
ebay-pp-cli --profile briefing deal
ebay-pp-cli profile list --json
ebay-pp-cli profile show briefing
ebay-pp-cli profile delete briefing --yesExplicit flags always win over profile values; profile values win over defaults. lists all available profiles under so introspecting agents discover them at runtime.
agent-contextavailable_profilesExit Codes
| Code | Meaning |
|---|---|
| 0 | Success |
| 2 | Usage error (wrong arguments) |
| 3 | Resource not found |
| 4 | Authentication required |
| 5 | API error (upstream issue) |
| 7 | Rate limited (wait and retry) |
| 10 | Config error |
Argument Parsing
Parse :
$ARGUMENTS- Empty, , or
help→ show--helpoutputebay-pp-cli --help - Starts with → ends with
install→ MCP installation; otherwise → see Prerequisites abovemcp - Anything else → Direct Use (execute as CLI command with )
--agent
MCP Server Installation
- Install the MCP server:
bash
go install github.com/mvanhorn/printing-press-library/library/commerce/ebay/cmd/ebay-pp-mcp@latest - Register with Claude Code:
bash
claude mcp add ebay-pp-mcp -- ebay-pp-mcp - Verify:
claude mcp list
Direct Use
- Check if installed: If not found, offer to install (see Prerequisites at the top of this skill).
which ebay-pp-cli - Match the user query to the best command from the Unique Capabilities and Command Reference above.
- Execute with the flag:
--agentbashebay-pp-cli <command> [subcommand] [args] --agent - If ambiguous, drill into subcommand help: .
ebay-pp-cli <command> --help