Timezone

live ReferenceTime

Get the current date and time in a specific IANA timezone (e.g. "America/New_York", "Europe/London", "Asia/Tokyo").

4 tools
0ms auth
free tier 50 calls/day

Tools

get_time_by_timezone required: timezone

Get the current date and time in a specific IANA timezone (e.g. "America/New_York", "Europe/London", "Asia/Tokyo").

Parameters
Name Type Description
timezone req string IANA timezone string, e.g. "America/New_York"
Try it
list_timezones

List all IANA timezone strings available from WorldTimeAPI.

No parameters required.

Try it
get_time_by_ip required: ip

Get the current date and time based on the geolocation of an IP address.

Parameters
Name Type Description
ip req string IPv4 or IPv6 address to look up
Try it
convert_time required: from_timezone, to_timezone

Convert a datetime from one timezone to another. If no time is provided the current time is used.

Parameters
Name Type Description
from_timezone req string Source IANA timezone, e.g. "America/New_York"
to_timezone req string Target IANA timezone, e.g. "Europe/Paris"
time opt string ISO 8601 datetime to convert (optional — defaults to now). E.g. "2024-06-15T14:30:00"
Try it

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"}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("get_time_by_timezone", {"timezone":"example"});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("get the current date and time in a specific iana timezone (e");