get_current_time
Retrieve the current time for any specified timezone, defaulting to system time. Supports IANA timezone names like 'America/New_York' or 'UTC' for accurate timezone management.
Instructions
Get current time (defaults to system time, supports any timezone)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
timezone | Yes | Timezone to display. Use 'system' or 'local' for user's local time (Etc/UTC). Use IANA names like 'America/New_York', 'Europe/London', or 'UTC' for other timezones. System time is the default and most practical choice. |
Input Schema (JSON Schema)
{
"properties": {
"timezone": {
"description": "Timezone to display. Use 'system' or 'local' for user's local time (Etc/UTC). Use IANA names like 'America/New_York', 'Europe/London', or 'UTC' for other timezones. System time is the default and most practical choice.",
"type": "string"
}
},
"required": [
"timezone"
],
"type": "object"
}