Pinloft: Batch Geocoder — Address to Lat/Long + Census FIPS
Pinloft: US address to lat/lon, county, FIPS; reverse geocoding. Free, no key.
Should I use this
Quality & Safety
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"batch-geocoder": {
"url": "https://pinloft.cybermax-tools.workers.dev/mcp?via=mcp-registry"
}
}
}Remote endpoints
https://pinloft.cybermax-tools.workers.dev/mcp?via=mcp-registrystreamable-httpWhat it can do
Tool inventory
Tools (2)
🟢geocode_address(addresses, include_districts, country)
Convert up to 5 street addresses to latitude/longitude with a cleaned, matched address and match confidence. US addresses also get state, county, tract, block group and block FIPS codes (US Census geocoder); include_districts adds congressional and state legislative districts, city, school district and metro area. Worldwide addresses use OpenStreetMap.
Input Schema
{
"type": "object",
"properties": {
"addresses": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"maxItems": 5,
"description": "Addresses, one per item, e.g. \"1600 Pennsylvania Ave NW, Washington, DC 20500\" or \"10 Downing St, London\". Up to 5."
},
"include_districts": {
"type": "boolean",
"default": false,
"description": "Add districts for US matches"
},
"country": {
"type": "string",
"description": "\"auto\" (default), \"US\", or ISO-2 codes for non-US lookups"
}
},
"required": [
"addresses"
]
}🟢reverse_geocode(coordinates)
Convert up to 5 latitude/longitude points to the nearest street address (OpenStreetMap), and for US points add state/county/tract/block FIPS codes and congressional/state districts from the US Census geocoder.
Input Schema
{
"type": "object",
"properties": {
"coordinates": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"maxItems": 5,
"description": "\"latitude,longitude\" strings, e.g. \"40.7484,-73.9857\""
}
},
"required": [
"coordinates"
]
}Community
Evidence