Pipeworx timezone

v1.0.0

Provides current time for any IANA timezone or IP, lists IANA timezones, and converts datetimes between timezones.

0· 65·0 current·0 all-time
byBruce Gutman@b-gutman

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for b-gutman/pipeworx-timezone.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Pipeworx timezone" (b-gutman/pipeworx-timezone) from ClawHub.
Skill page: https://clawhub.ai/b-gutman/pipeworx-timezone
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install pipeworx-timezone

ClawHub CLI

Package manager switcher

npx clawhub@latest install pipeworx-timezone
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (timezone lookup, list IANA zones, conversions, IP lookup) align with the provided tools and example. No excess binaries, credentials, or config paths are requested.
Instruction Scope
SKILL.md describes calling a single external RPC endpoint (https://gateway.pipeworx.io/timezone/mcp) for the listed tools which is coherent with the skill purpose. Note: get_time_by_ip implies sending an IP (or the caller's IP) to the external service for geolocation—this is expected but has a privacy implication.
Install Mechanism
No install spec or code is present (instruction-only), so nothing is written to disk or installed by the skill.
Credentials
No environment variables, credentials, or config paths are required. The lack of requested secrets is proportionate to the stated functionality.
Persistence & Privilege
always is false and the skill does not request persistent or elevated privileges. Autonomous invocation is allowed by default but not unusual and is not combined with other concerning flags.
Assessment
This skill is internally consistent with its stated purpose and requests no credentials. Before installing, consider: (1) the skill calls a third‑party endpoint (gateway.pipeworx.io) — verify you trust that service and its privacy policy; (2) using the IP-based lookup will reveal the calling IP (or any IP you provide) to that service; and (3) if you need to handle sensitive datetimes or internal IPs, avoid sending them to an external gateway. If you need stronger assurance, ask the author for a homepage, source repo, or a privacy/security statement for the gateway endpoint.

Like a lobster shell, security has layers — review code before you run it.

latestvk97eygb00xj960mcx3hnnnqen584tcxw
65downloads
0stars
1versions
Updated 1w ago
v1.0.0
MIT-0

Timezone

What time is it in Tokyo right now? Convert a meeting time from New York to London. List every IANA timezone string. Look up the timezone for an IP address.

Tools

  • get_time_by_timezone -- Current datetime in any IANA timezone (e.g., America/New_York, Asia/Tokyo)
  • list_timezones -- All available IANA timezone strings
  • get_time_by_ip -- Current datetime based on IP geolocation
  • convert_time -- Convert a datetime between two timezones. Omit the time parameter to convert "right now."

Example: convert meeting time

curl -X POST https://gateway.pipeworx.io/timezone/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"convert_time","arguments":{"from_timezone":"America/New_York","to_timezone":"Europe/London","time":"2025-04-15T09:00:00"}}}'

The response includes both datetimes, both UTC offsets, and the offset difference between the two zones.

{
  "mcpServers": {
    "timezone": {
      "url": "https://gateway.pipeworx.io/timezone/mcp"
    }
  }
}

Comments

Loading comments...