convert_time
Convert time between timezones using IANA timezone names. Input source and target timezones (e.g., 'America/New_York', 'Asia/Tokyo') with time in 24-hour format (HH:MM) to get accurate conversions.
Instructions
Convert time between timezones
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| source_timezone | Yes | Source IANA timezone name (e.g., 'America/New_York', 'Europe/London'). Use 'Etc/UTC' as local timezone if no source timezone provided by the user. | |
| target_timezone | Yes | Target IANA timezone name (e.g., 'Asia/Tokyo', 'America/San_Francisco'). Use 'Etc/UTC' as local timezone if no target timezone provided by the user. | |
| time | Yes | Time to convert in 24-hour format (HH:MM) | 
Input Schema (JSON Schema)
{
  "properties": {
    "source_timezone": {
      "description": "Source IANA timezone name (e.g., 'America/New_York', 'Europe/London'). Use 'Etc/UTC' as local timezone if no source timezone provided by the user.",
      "type": "string"
    },
    "target_timezone": {
      "description": "Target IANA timezone name (e.g., 'Asia/Tokyo', 'America/San_Francisco'). Use 'Etc/UTC' as local timezone if no target timezone provided by the user.",
      "type": "string"
    },
    "time": {
      "description": "Time to convert in 24-hour format (HH:MM)",
      "type": "string"
    }
  },
  "required": [
    "source_timezone",
    "time",
    "target_timezone"
  ],
  "type": "object"
}