lookup_timezone
Look up timezone information by IANA name to get current UTC offset, DST status, abbreviation, local time, and UTC time.
Instructions
Look up timezone information by IANA timezone name.
Returns the current UTC offset, DST status, abbreviation (e.g. EST/EDT), current local time, and current UTC time. Uses Python's stdlib zoneinfo.
Args: timezone: IANA timezone name (e.g. "America/New_York", "Europe/London", "Asia/Tokyo")
Returns: dict with keys: valid, timezone, utc_offset, utc_offset_seconds, abbreviation, is_dst, dst_offset_seconds, local_time, utc_time, cost_usd
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| timezone | Yes |