get_timezone_info
Retrieve current time and UTC offset details for any IANA timezone to coordinate schedules and manage global time differences.
Instructions
Get information about a specific timezone including current time and UTC offset.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
timezone_name | Yes | IANA timezone name (e.g., 'America/New_York', 'Europe/London') |
Input Schema (JSON Schema)
{
"properties": {
"timezone_name": {
"description": "IANA timezone name (e.g., 'America/New_York', 'Europe/London')",
"type": "string"
}
},
"required": [
"timezone_name"
],
"type": "object"
}