Ziplore: US ZIP Code API (county, time zone, demographics, radius)
Ziplore: US ZIP to county, FIPS, time zone, Census demographics; radius and city ZIPs. Free, no key.
Should I use this
Quality & Safety
Findings (2)
- LOWin nearest_zip
- LOWin zip_distance
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": {
"zip-data-api": {
"url": "https://ziplore.cybermax-tools.workers.dev/mcp?via=mcp-registry"
}
}
}Remote endpoints
https://ziplore.cybermax-tools.workers.dev/mcp?via=mcp-registrystreamable-httpWhat it can do
Tool inventory
Tools (5)
🟢zip_lookup(zips, demographics)
City, state, county and FIPS, coordinates, time zone with UTC offset, and Census demographics (population, income, home value, rent) for up to 10 US ZIP codes. Accepts ZIP+4, addresses and ZIPs missing a leading zero.
Input Schema
{
"type": "object",
"properties": {
"zips": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"maxItems": 10,
"description": "US ZIP codes (ZIP+4, addresses and ZIPs that lost their leading zero are accepted). Up to 10."
},
"demographics": {
"type": "boolean",
"default": true
}
},
"required": [
"zips"
]
}🟢zips_in_radius(zip, lat, lon, miles, limit)
Every US ZIP within N miles (max 25) of a ZIP or a lat/lon point, closest first, with distance in miles.
Input Schema
{
"type": "object",
"properties": {
"zip": {
"type": "string"
},
"lat": {
"type": "number"
},
"lon": {
"type": "number"
},
"miles": {
"type": "number",
"minimum": 0.1,
"maximum": 25
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 50,
"default": 25
}
},
"required": [
"miles"
]
}🟢city_zips(city, state, limit)
All ZIP codes of a US city, largest population first.
Input Schema
{
"type": "object",
"properties": {
"city": {
"type": "string"
},
"state": {
"type": "string",
"description": "2-letter code or name"
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 50,
"default": 25
}
},
"required": [
"city"
]
}🟢nearest_zip(lat, lon, count)
Reverse geocode a latitude/longitude to the nearest US ZIP code(s), with distance.
Input Schema
{
"type": "object",
"properties": {
"lat": {
"type": "number"
},
"lon": {
"type": "number"
},
"count": {
"type": "integer",
"minimum": 1,
"maximum": 10,
"default": 1
}
},
"required": [
"lat",
"lon"
]
}🟢zip_distance(from, to)
Great-circle distance in miles and km between two US ZIP codes.
Input Schema
{
"type": "object",
"properties": {
"from": {
"type": "string"
},
"to": {
"type": "string"
}
},
"required": [
"from",
"to"
]
}Community
Evidence