realestateapi_property_search
Pack: realestateapi · Endpoint: https://gateway.pipeworx.io/realestateapi/mcp
Search properties by city/state/filters (off-market, absentee-owner, value range) — returns matching properties with address, owner, beds/baths, and estimated value. Example: realestateapi_property_search({ city: “Austin”, state: “TX”, absentee_owner: true, value_max: 400000, size: 25, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
city | string | no | City name, e.g. “Austin” |
state | string | no | Two-letter state code, e.g. “TX” |
zip | string | no | ZIP code |
size | integer | no | Max results to return (default 10, max 50) |
property_type | string | no | One of SFR, MFR, CONDO, LAND, MOBILE, OTHER |
beds_min | integer | no | Minimum bedrooms |
baths_min | integer | no | Minimum bathrooms |
absentee_owner | boolean | no | Only properties whose owner lives elsewhere |
value_min | integer | no | Minimum estimated value (USD) |
value_max | integer | no | Maximum estimated value (USD) |
_apiKey | string | yes | RealEstateAPI key from realestateapi.com |
Example call
Arguments
{
"city": "Austin",
"state": "TX",
"absentee_owner": true,
"value_max": 400000,
"size": 25,
"_apiKey": "your-realestateapi-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/realestateapi/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"realestateapi_property_search","arguments":{"city":"Austin","state":"TX","absentee_owner":true,"value_max":400000,"size":25,"_apiKey":"your-realestateapi-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('realestateapi_property_search', {
"city": "Austin",
"state": "TX",
"absentee_owner": true,
"value_max": 400000,
"size": 25,
"_apiKey": "your-realestateapi-api-key"
});
More examples
{
"city": "Denver",
"state": "CO",
"property_type": "SFR",
"beds_min": 3,
"baths_min": 2,
"value_min": 350000,
"value_max": 600000,
"_apiKey": "your-realestateapi-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"realestateapi": {
"url": "https://gateway.pipeworx.io/realestateapi/mcp"
}
}
}
See Getting Started for client-specific install steps.