timezone
Get current local time, UTC offset, DST status, and full timezone name for any IANA timezone. Convert ISO timestamps or search timezone names.
Instructions
Timezone intelligence using the IANA database (418 zones) built into Node.js. Returns current local time, UTC offset, DST status, and the long timezone name for any IANA timezone. Can also convert an ISO timestamp to one or more target timezones. Useful for scheduling agents, global operations, and time-aware data enrichment. Zero external API calls — instant response.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| timezone | No | IANA timezone name to look up (e.g. 'America/Chicago', 'Europe/London', 'Asia/Tokyo'). Omit to return UTC. | |
| timezones | No | Batch: list of IANA timezone names (max 20). If provided, 'timezone' is ignored. | |
| convert_from_iso | No | ISO 8601 timestamp to convert (e.g. '2026-06-06T15:00:00Z'). If omitted, uses current UTC time. | |
| search | No | Return a list of timezone names matching this substring (e.g. 'America', 'Paris'). Use to discover valid timezone identifiers. |