smarty_property_enrichment

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

Property attributes (year built, sqft, value, owner) for a US address — returns 350+ data points from tax assessor & deed records including bedrooms/bathrooms, lot size, assessed & market value, and last sale. Example: smarty_property_enrichment({ street: “1400 Sandhill Rd”, city: “Orem”, state: “UT”, _apiKey: “authId:authToken” })

Parameters

NameTypeRequiredDescription
streetstringyesStreet address, or a full freeform US address, e.g. “1400 Sandhill Rd” or “1400 Sandhill Rd, Orem, UT 84058”
citystringnoCity name (optional if included in street)
statestringnoState abbreviation or name (optional)
zipcodestringnoZIP Code (optional)
_apiKeystringyesSmarty credentials as “authId:authToken” (server key pair), or a single embedded/website key. Free account + 1000 lookups at smarty.com

Example call

Arguments

{
  "street": "1400 Sandhill Rd",
  "city": "Orem",
  "state": "UT",
  "_apiKey": "your-smarty-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/smarty/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"smarty_property_enrichment","arguments":{"street":"1400 Sandhill Rd","city":"Orem","state":"UT","_apiKey":"your-smarty-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('smarty_property_enrichment', {
  "street": "1400 Sandhill Rd",
  "city": "Orem",
  "state": "UT",
  "_apiKey": "your-smarty-api-key"
});

More examples

{
  "street": "1400 Sandhill Rd, Orem, UT 84058",
  "_apiKey": "your-smarty-api-key"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 22, 2026