Claude
convert_timezone
Convert a datetime from one timezone to another.
Remote caj201100/date-aware-claude
Remote (network-hosted)
Other tools also called convert_timezone?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"to_timezone": {
"type": "string",
"description": "Target IANA timezone name, e.g. 'Europe/London' or 'Asia/Shanghai'."
},
"datetime_str": {
"type": "string",
"description": "Datetime to convert. Either 'YYYY-MM-DD HH:MM:SS' (naive, requires from_timezone) or ISO 8601 with offset e.g. '2026-04-17T09:00:00-04:00'."
},
"from_timezone": {
"type": "string",
"description": "Source IANA timezone name. Required when datetime_str has no UTC offset. Ignored when datetime_str includes an offset."
}
}
}