attom_property_search

Pack: attom · Endpoint: https://gateway.pipeworx.io/attom/mcp

Search properties by location using postal code (e.g., ‘10001’) or latitude/longitude with radius. Returns matching addresses and property IDs.

Parameters

NameTypeRequiredDescription
postalCodestringnoZIP/postal code to search in
latitudestringnoLatitude for radius search (use with longitude and radius)
longitudestringnoLongitude for radius search (use with latitude and radius)
radiusstringnoSearch radius in miles (use with latitude/longitude)
propertyTypestringnoProperty type filter (e.g., “SFR”, “CONDO”, “APARTMENT”)
minBedsstringnoMinimum number of bedrooms
maxBedsstringnoMaximum number of bedrooms
minBathsTotalstringnoMinimum total bathrooms
maxBathsTotalstringnoMaximum total bathrooms
minYearBuiltstringnoMinimum year built
maxYearBuiltstringnoMaximum year built
_apiKeystringyesATTOM API key

Example call

Arguments

{
  "postalCode": "10001",
  "_apiKey": "your-attom-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/attom/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"attom_property_search","arguments":{"postalCode":"10001","_apiKey":"your-attom-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('attom_property_search', {
  "postalCode": "10001",
  "_apiKey": "your-attom-api-key"
});

More examples

{
  "latitude": "39.7392",
  "longitude": "-104.9903",
  "radius": "2",
  "propertyType": "SFR",
  "minBeds": "3",
  "maxBeds": "5",
  "_apiKey": "your-attom-api-key"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Property search results from ATTOM API"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "attom": {
      "url": "https://gateway.pipeworx.io/attom/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026