Plan service areas, optimize depot placement, and visualize coverage gaps without standing up a routing stack. Drive-time areas, Voronoi territories, and density analysis on top of your own depot and order data.
A typical workflow for logistics, delivery & field service teams. Each line is one operation; together they take a few minutes and produce a published map plus a downloadable dataset.
# "Show me the gaps in our same-day coverage in the Southeast."
mcp.call("bulk_match_addresses", { records: depots })
→ 14 depots geocoded
const { batch } = await mcp.call("geo_isochrone", {
points: depots.map(d => [d.lng, d.lat]), // batch: 14 depots, one call
minutes: [45], profile: "driving",
});
const { polygon: coverage } = await mcp.call("geo_union", { polygons: batch.map(b => b.contours[0]) });
const { shapes: covered } = await mcp.call("query_shapes_by_intersection", {
geometry: coverage, collection: "us-zcta", version: "tiger-2024",
});
→ 1,247 ZIP codes covered · 894 ZIP codes in service-level gaps
mcp.call("create_report", {
slug: "se-coverage-gaps", public: false,
config: { collection: "us-zcta", version: "tiger-2024",
datasets: [{ slug: "se-coverage", field: "covered", palette: "diverging" }] },
})
→ /v/se-coverage-gaps internal review
bulk_match_addressesgeo_isochronegeo_uniongeo_voronoigeo_hotspotquery_shapes_by_intersectionbuild_geojsondescribe_reportvs. Onfleet / Routific / a custom open-source routing stack: those plan individual routes. We plan the geography — where to put depots, what the service-level polygon looks like, where the gaps are. The two layers compose; we sit upstream of the routing step.
Mid-size ops teams run on Pro ($50/month) for multi-region sub-workspaces. High-volume planning workflows fit on Enterprise. Full pricing details.
Free tier covers a real pilot — usually one region.
Get an API keyThe same toolkit also covers grassroots organizing platforms & campaign tooling · healthcare & life sciences · civic tech & journalism · real estate & property tech · retail, consumer brands & site selection · insurance & risk modeling · research, academia & think tanks · pollsters & survey research firms — one U.S.-geography surface for any team whose question comes down to where.