ebid_listing_bids
Pack: ebid · Endpoint: https://gateway.pipeworx.io/ebid/mcp
Bid history for one eBid.net listing (eBid Trading API GetListingBids): each bid’s amount, quantity, bidder username, timestamp, and whether it was a buy-now or proxy bid. On an ended auction the winning (highest) bid is the realized price. Get ListingIDs from ebid_search.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
listing_id | number | yes | Numeric eBid ListingID. |
_apiKey | string | no |
Example call
Arguments
{
"listing_id": 123456789,
"site": "uk"
}
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_bids","arguments":{"listing_id":123456789,"site":"uk"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ebid_listing_bids', {
"listing_id": 123456789,
"site": "uk"
});
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.