get_current_time
Retrieve the current time in a specified timezone with customizable formatting options, including UTC offset, for precise time management and synchronization.
Instructions
Get current time in specified timezone with formatting options
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | date-fns format string | |
include_offset | No | Include UTC offset (default: true) | |
timezone | No | IANA timezone (default: system timezone) |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"description": "date-fns format string",
"type": "string"
},
"include_offset": {
"description": "Include UTC offset (default: true)",
"type": "boolean"
},
"timezone": {
"description": "IANA timezone (default: system timezone)",
"type": "string"
}
},
"type": "object"
}