time
Retrieve current date and time information with optional timezone and format settings for accurate timekeeping and scheduling applications.
Instructions
Get current date and time
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Time format (optional, defaults to full) | |
timezone | No | Timezone (optional, defaults to Asia/Seoul) |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"description": "Time format (optional, defaults to full)",
"enum": [
"full",
"date",
"time",
"iso"
],
"type": "string"
},
"timezone": {
"description": "Timezone (optional, defaults to Asia/Seoul)",
"type": "string"
}
},
"type": "object"
}