Timezone
live UtilitiesGet current time by timezone or IP, list all timezones, and convert times between zones via WorldTimeAPI
4 tools
0ms auth
free tier 50 calls/day
Tools
get_time_by_timezone
required: timezone Get current time in a timezone
Parameters
Name Type Description
timezone req string IANA timezone (e.g. America/New_York) Try it
Response
list_timezones List all available IANA timezones
No parameters required.
Try it
Response
get_time_by_ip
required: ip Get current time based on an IP address
Parameters
Name Type Description
ip req string IPv4 or IPv6 address Try it
Response
convert_time
required: from_timezone, to_timezone Convert time between two timezones
Parameters
Name Type Description
from_timezone req string Source IANA timezone to_timezone req string Target IANA timezone time opt string ISO 8601 datetime (default: now) Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/timezone/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/timezone/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_time_by_timezone","arguments":{"timezone": "America/New_York"}}}'