auction_lot_details

Pack: gov-auctions · Endpoint: https://gateway.pipeworx.io/gov-auctions/mcp

Full details for a single government auction lot, looked up by its source + source_lot_id (as returned by auctions_search) or by its listing URL. Returns title, description, category, location, bid, close time, seller agency, and link.

Parameters

NameTypeRequiredDescription
sourcestringnoLot source: govdeals | allsurplus | irs.
source_lot_idstringnoThe lot id within that source.
urlstringnoAlternatively, the full listing URL.

Example call

Arguments

{
  "source": "govdeals",
  "source_lot_id": "12345678"
}

curl

curl -X POST https://gateway.pipeworx.io/gov-auctions/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"auction_lot_details","arguments":{"source":"govdeals","source_lot_id":"12345678"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('auction_lot_details', {
  "source": "govdeals",
  "source_lot_id": "12345678"
});

More examples

{
  "url": "https://www.govdeals.com/api/auctions/12345678"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "gov-auctions": {
      "url": "https://gateway.pipeworx.io/gov-auctions/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 19, 2026