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

NameTypeRequiredDescription
statestringno2-letter state code.
asset_typestringnoOne of: ${ASSET_TYPES.join(’ | ’)}.
segmentstringno${SEGMENTS.join(’ | ’)}. Omit for both.
sourcestringnoRestrict to one source.
auction_housestringnoSelling auctioneer, substring match.
keywordstringnoFree-text search over lot title and description.
near_zipstringnoUS 5-digit ZIP to search around, e.g. “94402”.
radius_milesnumber,stringnoRadius around near_zip in miles (1-500, default 50).
limitnumber,stringnoMax 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.

Regenerated from source · build August 27, 2026