get_property
Pack: rentcast · Endpoint: https://gateway.pipeworx.io/rentcast/mcp
Get property details for a US address. Returns bedrooms, bathrooms, square footage, lot size, year built, property type, and owner info when available.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Rentcast API key |
address | string | yes | Full street address with city, state, and ZIP (e.g., “123 Oak Ave, Denver, CO 80202”) |
Example call
Arguments
{
"_apiKey": "your-rentcast-api-key",
"address": "123 Oak Ave, Denver, CO 80202"
}
curl
curl -X POST https://gateway.pipeworx.io/rentcast/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_property","arguments":{"_apiKey":"your-rentcast-api-key","address":"123 Oak Ave, Denver, CO 80202"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_property', {
"_apiKey": "your-rentcast-api-key",
"address": "123 Oak Ave, Denver, CO 80202"
});
More examples
{
"_apiKey": "your-rentcast-api-key",
"address": "456 Elm St, Seattle, WA 98101"
}
Response shape
Always returns: address, city, state, zip, county, property_type, bedrooms, bathrooms, square_footage, lot_size, year_built, last_sale_date, last_sale_price, owner_occupied, latitude, longitude
| Field | Type | Description |
|---|---|---|
address | string | null | Formatted street address |
city | string | null | City name |
state | string | null | State abbreviation |
zip | string | null | ZIP code |
county | string | null | County name |
property_type | string | null | Type of property |
bedrooms | number | null | Number of bedrooms |
bathrooms | number | null | Number of bathrooms |
square_footage | number | null | Total square footage |
lot_size | number | null | Lot size in square feet |
year_built | number | null | Year the property was built |
last_sale_date | string | null | Date of last sale |
last_sale_price | number | null | Price of last sale in USD |
owner_occupied | boolean | null | Whether property is owner-occupied |
latitude | number | null | Geographic latitude coordinate |
longitude | number | null | Geographic longitude coordinate |
Full JSON Schema
{
"type": "object",
"properties": {
"address": {
"type": [
"string",
"null"
],
"description": "Formatted street address"
},
"city": {
"type": [
"string",
"null"
],
"description": "City name"
},
"state": {
"type": [
"string",
"null"
],
"description": "State abbreviation"
},
"zip": {
"type": [
"string",
"null"
],
"description": "ZIP code"
},
"county": {
"type": [
"string",
"null"
],
"description": "County name"
},
"property_type": {
"type": [
"string",
"null"
],
"description": "Type of property"
},
"bedrooms": {
"type": [
"number",
"null"
],
"description": "Number of bedrooms"
},
"bathrooms": {
"type": [
"number",
"null"
],
"description": "Number of bathrooms"
},
"square_footage": {
"type": [
"number",
"null"
],
"description": "Total square footage"
},
"lot_size": {
"type": [
"number",
"null"
],
"description": "Lot size in square feet"
},
"year_built": {
"type": [
"number",
"null"
],
"description": "Year the property was built"
},
"last_sale_date": {
"type": [
"string",
"null"
],
"description": "Date of last sale"
},
"last_sale_price": {
"type": [
"number",
"null"
],
"description": "Price of last sale in USD"
},
"owner_occupied": {
"type": [
"boolean",
"null"
],
"description": "Whether property is owner-occupied"
},
"latitude": {
"type": [
"number",
"null"
],
"description": "Geographic latitude coordinate"
},
"longitude": {
"type": [
"number",
"null"
],
"description": "Geographic longitude coordinate"
}
},
"required": [
"address",
"city",
"state",
"zip",
"county",
"property_type",
"bedrooms",
"bathrooms",
"square_footage",
"lot_size",
"year_built",
"last_sale_date",
"last_sale_price",
"owner_occupied",
"latitude",
"longitude"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"rentcast": {
"url": "https://gateway.pipeworx.io/rentcast/mcp"
}
}
}
See Getting Started for client-specific install steps.