Geographic utilities — geocoding, reverse geocoding, country info, timezone lookup, and sunrise/sunset times
A Swiss-army knife for location data. Convert addresses to coordinates (and back), look up country details, check the local timezone, and get sunrise/sunset times — all from free public APIs, no keys needed.
| Tool | Description |
|---|---|
geocode | Address or place name to lat/lon coordinates (e.g., "Eiffel Tower, Paris") |
reverse_geocode | Lat/lon coordinates to a human-readable address |
get_country | Country details by name or ISO code — population, capital, languages, currencies |
get_timezone | Current timezone and local time for any lat/lon |
get_sunrise_sunset | Sunrise, sunset, golden hour, and day length for a location and date |
curl -s -X POST https://gateway.pipeworx.io/geo/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"geocode","arguments":{"query":"Colosseum, Rome, Italy"}}}'
Returns latitude (41.8902), longitude (12.4922), and display name.
{
"mcpServers": {
"pipeworx-geo": {
"command": "npx",
"args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/geo/mcp"]
}
}
}