get_current_datetime
Retrieve the current date and time for any specified timezone using IANA timezone names like 'America/New_York' or 'Europe/London'.
Instructions
Get current time in specified timezone.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
timezone_name | Yes | IANA timezone name (e.g., 'America/New_York', 'Europe/London'). Use UTC timezone if no timezone provided by the user. |
Input Schema (JSON Schema)
{
"properties": {
"timezone_name": {
"description": "IANA timezone name (e.g., 'America/New_York', 'Europe/London'). Use UTC timezone if no timezone provided by the user.",
"type": "string"
}
},
"required": [
"timezone_name"
],
"type": "object"
}