U.S. counties, ZIP code areas, and custom catchments — joined to Census demographics, with workspace-isolated datasets for sensitive provider data. Use it for patient-access mapping, network-adequacy reviews, dispensary-proximity compliance, or any 'who lives near what' question.
A typical workflow for healthcare & life sciences teams. Each line is one operation; together they take a few minutes and produce a published map plus a downloadable dataset.
# "Are we within 5 minutes' walk of any pediatric clinic?"
mcp.call("bulk_match_addresses", { records: our_dispensaries })
→ 412 sites geocoded
// Fan out 5-minute walk-time areas across all sites:
const walkPolygons = await Promise.all(sites.map(s =>
mcp.call("geo_isochrone", { point: [s.lng, s.lat], minutes: [5], profile: "walking" })
));
mcp.call("geo_intersect_dataset", {
polygons: walkPolygons,
dataset: "pediatric_clinics_spreadsheet",
})
→ 38 dispensaries within a 5-minute walk of a clinic
mcp.call("create_report", {
layer: { polygons: walkPolygons, highlight: violations },
public: false,
embed_origins: ["compliance.ourdomain.com"],
})
→ secure embed iframe · no Maps MCP footer · no public URL
bulk_match_addressesshapes_within_radiusgeo_isochronegeo_intersect_datasetcensus_acsdisaggregate_acsgeo_hotspotrender_map_bivariateinterpret_hotspotvs. Esri Health Solutions: no $50,000 seat license, no two-week onboarding — get a publishable map in minutes. vs. building in-house: every dataset is workspace-isolated by default, with origin-allowlist embeds for internal patient maps. vs. ChatGPT + Google Sheets: your geography is real and versioned, not invented by the model.
Compliance teams typically run on Pro ($50/month) for the embed-origin allowlist and up to 25 sub-workspaces. Larger health systems should email about Enterprise. Full pricing details.
Free tier — evaluate before any credit card is needed.
Get an API keyThe same toolkit also covers grassroots organizing platforms & campaign tooling · civic tech & journalism · real estate & property tech · 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.