current_iso_zoned_date_time
Pack: timeapi-io · Endpoint: https://gateway.pipeworx.io/timeapi-io/mcp
Return the current date/time for a given IANA timezone as a full ISO 8601 zoned datetime string (e.g. 2026-06-24T10:30:00+02:00).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
timeZone | string | yes |
Example call
Arguments
{
"timeZone": "Asia/Tokyo"
}
curl
curl -X POST https://gateway.pipeworx.io/timeapi-io/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"current_iso_zoned_date_time","arguments":{"timeZone":"Asia/Tokyo"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('current_iso_zoned_date_time', {
"timeZone": "Asia/Tokyo"
});
More examples
{
"timeZone": "Australia/Sydney"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "ISO zoned datetime for specified timezone"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"timeapi-io": {
"url": "https://gateway.pipeworx.io/timeapi-io/mcp"
}
}
}
See Getting Started for client-specific install steps.