attom_rental_avm

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

“How much can I rent [house] for” / “estimated rent for [address]” / “rental income on [property]” / “rental yield of [home]” — rental AVM for a US residential property. Returns estimated monthly rent, rental yield percentage, and rental value range. Use for landlord / investor / cash-flow analysis questions.

Parameters

NameTypeRequiredDescription
address1stringyesStreet address (e.g., “123 Main St”)
address2stringyesCity, state ZIP (e.g., “Denver, CO 80202”)
_apiKeystringyesATTOM API key

Example call

Arguments

{
  "address1": "123 Main St",
  "address2": "Denver, CO 80202",
  "_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_rental_avm","arguments":{"address1":"123 Main St","address2":"Denver, CO 80202","_apiKey":"your-attom-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('attom_rental_avm', {
  "address1": "123 Main St",
  "address2": "Denver, CO 80202",
  "_apiKey": "your-attom-api-key"
});

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Rental AVM valuation response 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 June 24, 2026