get_time
Retrieve the current time to synchronize with South Korea's youth activity schedules and program timings for accurate planning and coordination.
Instructions
현재 시간을 반환합니다
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:403-415 (handler)The implementation of the get_time tool handler, which returns the current time in ISO format and Korean local time format.case "get_time": { const now = new Date(); return { content: [ { type: "text", text: `현재 시간: ${now.toISOString()}\n로컬 시간: ${now.toLocaleString( "ko-KR" )}`, }, ], }; }
- src/index.ts:178-185 (registration)Registration of the get_time tool in the ListTools response, including name, description, and input schema (empty object).{ name: "get_time", description: "현재 시간을 반환합니다", inputSchema: { type: "object", properties: {}, }, },
- src/index.ts:181-184 (schema)Input schema for the get_time tool, which takes no parameters.inputSchema: { type: "object", properties: {}, },