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
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":{}}}'
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.