get_current_time
Retrieve current date and time information with timezone support and multiple formatting options for accurate time-related responses.
Instructions
Get the current date and time
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| format | No | Time format: "12hour", "24hour", or "iso" (default: 12hour) | 12hour | 
| timezone | No | Timezone (optional, defaults to system timezone) | system | 
Input Schema (JSON Schema)
{
  "additionalProperties": false,
  "properties": {
    "format": {
      "default": "12hour",
      "description": "Time format: \"12hour\", \"24hour\", or \"iso\" (default: 12hour)",
      "enum": [
        "12hour",
        "24hour",
        "iso"
      ],
      "type": "string"
    },
    "timezone": {
      "default": "system",
      "description": "Timezone (optional, defaults to system timezone)",
      "type": "string"
    }
  },
  "type": "object"
}