Geocode a thousand addresses at once.
Run up to 1,000 addresses through geocoding in a single call. Returns coordinates and confidence for each.
mcp.footstep.ai / batch_geocodeWhy your agent needs this.
When the user hands the agent a CSV and asks 'add coordinates to this', the agent shouldn't loop a thousand calls. batch_geocode is one tool call: pass the list, get back the coordinates plus per-row confidence so the agent can flag dodgy rows for review.
What your agent gets back.
- Up to 1,000 addresses per single tool call.
- Per-row coordinates plus structured components.
- Per-row confidence score so the agent can route low-confidence rows to a review path.
- Failed rows return typed errors (timeout, rate_limited, invalid_input) the agent can explain.
- Composes with parse_address upstream when the input is dirty free text.
Plug it into your agent.
Add Footstep to your MCP-aware runtime. Your model picks the tool at runtime; you wrote none of the orchestration.
"Clean up this messy CSV of customer addresses before geocoding them."{
"mcpServers": {
"footstep": {
"url": "https://mcp.footstep.ai",
"headers": {
"x-api-key": "sk_live_your_key_here"
}
}
}
}Related capabilities.
geocodeTurn an address, landmark, or place name into coordinates. Returns ranked candidates with confidence scores.
parse_addressFree-text in, structured out. Fixes typos, expands abbreviations, infers missing fields, and scores confidence.
reverse_geocodeGiven a coordinate, return the address or place label. Useful for labelling pins and incident reports.
Ready to call it?
£5 free credit on signup. One auth header, every major runtime.