ebid_listing
Pack: ebid · Endpoint: https://gateway.pipeworx.io/ebid/mcp
Fetch one eBid.net listing by its numeric ListingID (eBid Trading API GetListingSingle): title, description, seller, current price, bid count, quantity, condition, start/end times, and shipping cost calculated to a destination country. Works for live and ended listings on any eBid country site. Get ListingIDs from ebid_search.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
listing_id | number | yes | Numeric eBid ListingID (from ebid_search results or an ebid.net listing URL). |
ship_to | string | no | ISO country code to calculate shipping to (e.g. “us”, “uk”). Defaults to the site’s country. |
_apiKey | string | no |
Example call
Arguments
{
"listing_id": 123456789,
"site": "uk",
"ship_to": "us"
}
curl
curl -X POST https://gateway.pipeworx.io/ebid/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ebid_listing","arguments":{"listing_id":123456789,"site":"uk","ship_to":"us"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ebid_listing', {
"listing_id": 123456789,
"site": "uk",
"ship_to": "us"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ebid": {
"url": "https://gateway.pipeworx.io/ebid/mcp"
}
}
}
See Getting Started for client-specific install steps.