U.S. geography pre-joined to Census demographics, ZIP-level buying-power data, and drive-time areas around any address. Build territory maps, comp-set analyses, and listing dashboards in minutes — no mapping team, no notebook.
A typical workflow for real estate & property tech teams. Each line is one operation; together they take a few minutes and produce a published map plus a downloadable dataset.
# "Demographics within a 20-minute drive of 123 Main St."
const { results } = await mcp.call("bulk_match_addresses", {
records: [{ id: "listing", street: "123 Main St", city: "Austin", state: "TX" }],
});
mcp.call("geo_isochrone", { point: [results[0].lng, results[0].lat], minutes: [20] })
→ 1 drive-time polygon · 387 ZIP code areas inside
mcp.call("census_acs", {
collection: "us-zcta", version: "tiger-2024", year: 2023,
variables: ["B19013_001E", "B25077_001E", "B01002_001E"], // income, home value, age
geometry: drive_polygon,
slug: "listing-area-demographics-2023",
})
mcp.call("create_report", {
slug: "123-main-st-comps", public: false,
config: {
collection: "us-zcta", version: "tiger-2024",
datasets: [{
slug: "listing-area-demographics-2023", field: "B19013_001E",
palette: "sequential",
classify: { method: "quantile", bins: 7 },
}],
embed_origins: ["https://maps.yourbrokerage.com"],
},
})
→ maps.yourbrokerage.com/embed/123-main-st-comps
lookup_shape_at_pointshapes_within_radiusgeo_voronoigeo_isochronecensus_acsgeo_nearest_nrender_map_bivariaterender_dot_densityvs. Esri Tapestry / Easy Analytic: same data, $50/month versus $5,000-per-seat. vs. building with raw Census files + Mapbox: every join is one call, not a pipeline. vs. ChatGPT: actual map output, embeddable on your site.
Brokerage teams run on Pro ($50/month) for the branded embeds + sub-workspaces. National operators with high call volume should email about Enterprise. Full pricing details.
Free tier — try the demographic-overlay flow before any credit card.
Get an API keyThe same toolkit also covers grassroots organizing platforms & campaign tooling · healthcare & life sciences · civic tech & journalism · retail, consumer brands & site selection · insurance & risk modeling · logistics, delivery & field service · research, academia & think tanks · pollsters & survey research firms — one U.S.-geography surface for any team whose question comes down to where.