housing_property_report
Pack: housing-intel · Endpoint: https://gateway.pipeworx.io/housing-intel/mcp
Analyze a property by address and zip code. Returns valuation estimate, sales history, tax assessment, and detailed characteristics.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_attomKey | string | yes | ATTOM API key (https://api.gateway.attomdata.com) |
address1 | string | yes | Street address (e.g., “4529 Winona Court”) |
address2 | string | yes | City, state ZIP (e.g., “Denver, CO 80212”) |
Example call
Arguments
{
"_attomKey": "your-housing-intel-api-key",
"address1": "4529 Winona Court",
"address2": "Denver, CO 80212"
}
curl
curl -X POST https://gateway.pipeworx.io/housing-intel/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"housing_property_report","arguments":{"_attomKey":"your-housing-intel-api-key","address1":"4529 Winona Court","address2":"Denver, CO 80212"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('housing_property_report', {
"_attomKey": "your-housing-intel-api-key",
"address1": "4529 Winona Court",
"address2": "Denver, CO 80212"
});
Response shape
Always returns: address, property, valuation, sales_history, assessment
| Field | Type | Description |
|---|---|---|
address | string | Full property address |
property | object | |
valuation | object | |
sales_history | unknown | |
assessment | object |
Full JSON Schema
{
"type": "object",
"properties": {
"address": {
"type": "string",
"description": "Full property address"
},
"property": {
"type": "object",
"properties": {
"beds": {
"type": [
"number",
"null"
],
"description": "Number of bedrooms"
},
"baths": {
"type": [
"number",
"null"
],
"description": "Number of bathrooms"
},
"sqft": {
"type": [
"number",
"null"
],
"description": "Square footage"
},
"yearBuilt": {
"type": [
"number",
"null"
],
"description": "Year property was built"
},
"lotSqft": {
"type": [
"number",
"null"
],
"description": "Lot size in square feet"
},
"error": {
"type": "string"
}
}
},
"valuation": {
"type": "object",
"properties": {
"avm": {
"type": [
"number",
"null"
],
"description": "Automated valuation model estimate"
},
"low": {
"type": [
"number",
"null"
],
"description": "Low end of AVM range"
},
"high": {
"type": [
"number",
"null"
],
"description": "High end of AVM range"
},
"confidence": {
"type": [
"string",
"number",
"null"
],
"description": "Confidence score or condition"
},
"error": {
"type": "string"
}
}
},
"sales_history": {
"oneOf": [
{
"type": "array",
"items": {
"type": "object",
"properties": {
"date": {
"type": [
"string",
"null"
]
},
"amount": {
"type": [
"number",
"null"
],
"description": "Sale price"
},
"type": {
"type": [
"string",
"null"
],
"description": "Transaction type"
}
}
}
},
{
"type": "object",
"properties": {
"error": {
"type": "string"
}
}
}
]
},
"assessment": {
"type": "object",
"properties": {
"assessed": {
"type": [
"number",
"null"
],
"description": "Assessed value"
},
"market": {
"type": [
"number",
"null"
],
"description": "Market value assessment"
},
"taxAmount": {
"type": [
"number",
"null"
],
"description": "Annual tax amount"
},
"error": {
"type": "string"
}
}
}
},
"required": [
"address",
"property",
"valuation",
"sales_history",
"assessment"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"housing-intel": {
"url": "https://gateway.pipeworx.io/housing-intel/mcp"
}
}
}
See Getting Started for client-specific install steps.