ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

pipeworx-geo

Geographic utilities — geocoding, reverse geocoding, country info, timezone lookup, and sunrise/sunset times

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/b-gutman/pipeworx-geo
Or

Geographic Utilities

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.

Tools

ToolDescription
geocodeAddress or place name to lat/lon coordinates (e.g., "Eiffel Tower, Paris")
reverse_geocodeLat/lon coordinates to a human-readable address
get_countryCountry details by name or ISO code — population, capital, languages, currencies
get_timezoneCurrent timezone and local time for any lat/lon
get_sunrise_sunsetSunrise, sunset, golden hour, and day length for a location and date

Reach for this when

  • A user gives a place name and you need coordinates for another API
  • Converting GPS coordinates to a street address
  • Answering "what time is it in Tokyo right now?"
  • Calculating daylight hours for a specific location and date
  • Looking up country metadata (capital, population, languages)

Example: geocode the Colosseum

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.

MCP config

{
  "mcpServers": {
    "pipeworx-geo": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/geo/mcp"]
    }
  }
}

Metadata

Author@b-gutman
Stars4473
Views1
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-b-gutman-pipeworx-geo": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.