gsa_auction_lot
Pack: gsa-auctions · Endpoint: https://gateway.pipeworx.io/gsa-auctions/mcp
Full detail for a single GSA Auctions lot, identified by its sale number and lot number. Returns everything the auction listing carries: item name, per-lot descriptions (LotInfo), property and sale locations, start/end dates, status, high bid, reserve, bid increment, bidder count, inspection instructions, contracting-officer contact, agency/bureau, and item/image URLs.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
sale_no | string | yes | The sale number (SaleNo), e.g. “25QSCI21001”. |
lot_no | number,string | yes | The lot number (LotNo) within that sale, e.g. 1. |
Example call
Arguments
{
"sale_no": "25QSCI21001",
"lot_no": "1"
}
curl
curl -X POST https://gateway.pipeworx.io/gsa-auctions/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"gsa_auction_lot","arguments":{"sale_no":"25QSCI21001","lot_no":"1"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gsa_auction_lot', {
"sale_no": "25QSCI21001",
"lot_no": "1"
});
More examples
{
"sale_no": "25QSCI21005",
"lot_no": "42"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"gsa-auctions": {
"url": "https://gateway.pipeworx.io/gsa-auctions/mcp"
}
}
}
See Getting Started for client-specific install steps.