get_current_time
Retrieve current date and time in Korean Standard Time (KST) with format options including locale, ISO, and timestamp for accurate timekeeping applications.
Instructions
현재 시간을 알려주는 도구입니다. 한국 시간(KST)으로 현재 날짜와 시간을 반환합니다.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| format | No | 시간 포맷 (기본값: locale) |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"description": "시간 포맷 (기본값: locale)",
"enum": [
"locale",
"iso",
"timestamp"
],
"type": "string"
}
},
"type": "object"
}