oc-korea-weather-time-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| KMA_SERVICE_KEY | No | Your KMA service key from data.go.kr (required unless OC_KOREA_MCP_WEATHER=0) | |
| OC_KOREA_MCP_TIME | No | Set to '0' to disable time tools (default enabled) | 1 |
| KMA_DEFAULT_LOCATION | No | Default location for weather tools (e.g., '서울') | 서울 |
| OC_KOREA_MCP_WEATHER | No | Set to '0' to disable weather tools (default enabled) | 1 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_current_weatherA | 지금 관측된 날씨를 조회한다 (기상청 초단기실황). 기온·습도·강수형태·풍향·풍속·1시간 강수량을 돌려준다. Args: location: 지역명 (예: 서울, 인천, 부산). 생략하면 기본 지역. '위도,경도' 형식도 받는다. |
| get_hourly_forecastA | 앞으로 6시간까지의 시간별 예보를 조회한다 (기상청 초단기예보). Args: location: 지역명. 생략하면 기본 지역. hours: 돌려받을 시각 개수 (기본 6, 최대 100) |
| get_daily_forecastA | 앞으로 3일까지의 예보를 조회한다 (기상청 단기예보). 강수확률·일최저/최고기온이 여기에만 있다. Args: location: 지역명. 생략하면 기본 지역. slots: 돌려받을 예보시각 개수 (기본 24, 최대 100) |
| get_current_timeA | 지정한 시간대의 현재 시각을 조회한다. Args: timezone: IANA 시간대 이름 (기본 Asia/Seoul) |
| convert_timeA | 한 시간대의 시각을 다른 시간대로 변환한다. Args:
time: 변환할 시각. |
| find_timezoneA | IANA 시간대 이름을 부분 문자열로 검색한다. Args: query: 검색어 (예: Seoul, New_York, Europe) |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool targets a distinct operation: time lookup, time conversion, timezone search, current weather, hourly forecast, and daily forecast. The two 'get_current_*' tools are clearly separated by domain (time vs weather) and description.
All tool names follow a verb_noun pattern (get_*, convert_*, find_*). The verbs are semantically appropriate and the pattern is consistent across both domains.
6 tools is well-scoped for a combined time and weather server. Each tool covers a necessary function without unnecessary bloat.
The time domain covers current time, conversion, and timezone search. The weather domain covers current observations, hourly forecast, and daily forecast. Minor gaps like weather alerts or location search exist but core workflows are covered.