current_time
Get the current time in any timezone. Defaults to Korean time (Asia/Seoul) when no timezone is specified.
Instructions
현재 시간을 지정된 시간대에서 조회하는 도구. 시간대를 입력하지 않으면 한국 시간대(Asia/Seoul)를 사용합니다.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| timezone | No | 시간대 (예: Asia/Seoul, America/New_York, Europe/London). 입력하지 않으면 한국 시간대를 사용합니다. |
Input Schema (JSON Schema)
{
"properties": {
"timezone": {
"description": "시간대 (예: Asia/Seoul, America/New_York, Europe/London). 입력하지 않으면 한국 시간대를 사용합니다.",
"type": "string"
}
},
"required": [],
"type": "object"
}