Wraps the free Zippopotam.us API for looking up location data from ZIP and postal codes. No authentication required. Hosted via Pipeworx's MCP gateway, so you can drop in a remote URL instead of running a local server. Part of a larger gateway that bundles 673+ data sources, but available standalone if you just need postal code lookups. Useful when you're building location-aware features and need to resolve a ZIP code to city, state, or coordinate data. The ask_pipeworx interface lets you query in natural language rather than calling tool methods directly, though standard MCP tool calls work too.
Zippopotam MCP — wraps Zippopotam.us ZIP/postal code API (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"zippopotam": {
"url": "https://gateway.pipeworx.io/zippopotam/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Zippopotam data" })
The gateway picks the right tool and fills the arguments automatically.
MIT