us_auction_houses
Pack: us-auctions · Endpoint: https://gateway.pipeworx.io/us-auctions/mcp
Which US auction houses Pipeworx covers, and how much they currently have live — name, home state, number of open sales and total lots across them. Use to find the auctioneers active in a state or in a niche (“who runs industrial liquidations in California”), then pass the name to us_auction_events or us_auctions_search. Ranked by live lot count.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
state | string | no | 2-letter state code of the sale location. |
keyword | string | no | Free-text matched against the house name or its sale titles. |
limit | number,string | no | Max houses (1-100, default 25). |
Example call
Arguments
{
"limit": 15
}
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_auction_houses","arguments":{"limit":15}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('us_auction_houses', {
"limit": 15
});
More examples
{
"state": "CA",
"limit": 15
}
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.