xome_property_detail
Pack: xome · Endpoint: https://gateway.pipeworx.io/xome/mcp
Full detail for one Xome foreclosure/REO auction listing: property facts, the exact sale event (date + courthouse venue address), sale terms (buyer’s premium, financing, payment method), and the bid/sale PRICE with an explicit status label. VERIFIED live 2026-09-13: for upcoming sales this is an opening-bid estimate or starting bid (often unset); for a closed-but-undecided sale it is the highest bid received (NOT a completed sale); for a confirmed completed sale (including “Sold to Bank”, where the foreclosing lender took the property back) it is the real realized sale price. Every response says explicitly which case applies — never treat estimated_or_starting_bid or high_bid_received as a sale price. Get url from xome_search. Sourced from the listing’s own page (schema.org JSON-LD plus its embedded Next.js auction-state data).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
url | string | yes | Full xome.com listing url from xome_search, e.g. “https://www.xome.com/auctions/975-e-democracy-ave-fresno-ca-93720-181526576” |
Example call
Arguments
{
"url": "https://www.xome.com/auctions/975-e-democracy-ave-fresno-ca-93720-181526576"
}
curl
curl -X POST https://gateway.pipeworx.io/xome/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"xome_property_detail","arguments":{"url":"https://www.xome.com/auctions/975-e-democracy-ave-fresno-ca-93720-181526576"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('xome_property_detail', {
"url": "https://www.xome.com/auctions/975-e-democracy-ave-fresno-ca-93720-181526576"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"xome": {
"url": "https://gateway.pipeworx.io/xome/mcp"
}
}
}
See Getting Started for client-specific install steps.