estatesales_search
Pack: estatesales-net · Endpoint: https://gateway.pipeworx.io/estatesales-net/mcp
Upcoming estate sales, moving sales and estate auctions near a US ZIP code, from EstateSales.NET — the largest US estate-sale listing site. Returns each sale’s ID, city/state/ZIP, coordinates, distance from the ZIP, sale type (on-site estate sale, moved offsite, online auction), start and end dates, and whether it runs today or tomorrow. These are UPCOMING sale listings, not sold prices — EstateSales.NET publishes no hammer prices.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
postal_code | string | yes | US ZIP code, e.g. “64111”. The site resolves it to its city page. |
state_code | string | no | Optional 2-letter state code, e.g. “MO”. Only needed to disambiguate; the ZIP alone normally resolves. |
city | string | no | Optional city name, e.g. “Kansas City”. Normally unnecessary — the ZIP resolves it. |
Example call
Arguments
{
"postal_code": "64111"
}
curl
curl -X POST https://gateway.pipeworx.io/estatesales-net/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"estatesales_search","arguments":{"postal_code":"64111"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('estatesales_search', {
"postal_code": "64111"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"estatesales-net": {
"url": "https://gateway.pipeworx.io/estatesales-net/mcp"
}
}
}
See Getting Started for client-specific install steps.