us_auctions_closing_soon
Pack: us-auctions · Endpoint: https://gateway.pipeworx.io/us-auctions/mcp
US auction lots ordered by soonest close time — the “what can I still bid on before it ends” view across commercial and government sources alike. Optionally filter by state, asset_type, segment, auction_house or keyword. Returns lots with hours remaining, current bid, location and link.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
state | string | no | 2-letter state code. |
asset_type | string | no | One of: ${ASSET_TYPES.join(’ | ’)}. |
segment | string | no | ${SEGMENTS.join(’ | ’)}. Omit for both. |
source | string | no | Restrict to one source. |
auction_house | string | no | Selling auctioneer, substring match. |
keyword | string | no | Free-text search over lot title and description. |
near_zip | string | no | US 5-digit ZIP to search around, e.g. “94402”. |
radius_miles | number,string | no | Radius around near_zip in miles (1-500, default 50). |
limit | number,string | no | Max lots (1-100, default 25). |
Example call
Arguments
{
"limit": 10
}
curl
curl -X POST https://gateway.pipeworx.io/us-auctions/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"us_auctions_closing_soon","arguments":{"limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('us_auctions_closing_soon', {
"limit": 10
});
More examples
{
"state": "TX",
"asset_type": "equipment",
"limit": 10
}
{
"near_zip": "98101",
"radius_miles": 100,
"limit": 10
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"us-auctions": {
"url": "https://gateway.pipeworx.io/us-auctions/mcp"
}
}
}
See Getting Started for client-specific install steps.