bigiron_sold_search
Pack: bigiron · Endpoint: https://gateway.pipeworx.io/bigiron/mcp
Search CONFIRMED-SOLD equipment lots on bigiron.com for comps — title, make/model/year, quantity, seller, location and close date for lots that actually sold. IMPORTANT: bigiron.com does not expose the realized hammer price in this page shape (verified: 0/100 sampled sold lots carry a nonzero price field, even with 60+ bids) — final_price is always null with an explanatory note; num_bids is the closest available demand signal. Use bigiron_search for current asking prices instead. Sourced from bigiron.com/Search?filter=Sold.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Search keywords, e.g. “planter”, “grain trailer”, “combine tires” |
page | number | no | Result page, starting at 1 (each page holds up to 20 lots) |
limit | number | no | Max lots to return, 1-20 (default 20) |
Example call
Arguments
{
"query": "tires",
"limit": 3
}
curl
curl -X POST https://gateway.pipeworx.io/bigiron/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bigiron_sold_search","arguments":{"query":"tires","limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('bigiron_sold_search', {
"query": "tires",
"limit": 3
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"bigiron": {
"url": "https://gateway.pipeworx.io/bigiron/mcp"
}
}
}
See Getting Started for client-specific install steps.