Skip to main content
Glama
hyunhoonj

Youth Activity Information MCP Server

by hyunhoonj

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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: {}, }, },
  • Input schema for the get_time tool, which takes no parameters.
    inputSchema: { type: "object", properties: {}, },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/hyunhoonj/mcp-test'

If you have feedback or need assistance with the MCP directory API, please join our Discord server