feat: rename weather tool from get_current_weather to get_weather

This commit is contained in:
jade
2026-07-21 13:10:52 +09:00
parent 438e30f987
commit b9966bbbda

View File

@@ -40,8 +40,8 @@ public class WeatherToolService extends AbstractMcpToolService {
this.restClient = RestClient.create(); this.restClient = RestClient.create();
} }
@McpFunction(displayName = "날씨 조회 툴", name = "get_current_weather", @McpFunction(displayName = "날씨 조회 툴", name = "get_weather",
description = "특정 도시의 실시간 날씨(기온, 풍속 등)를 오픈 기상 API를 통해 조회합니다.", description = "특정 도시의 현재 날씨, 온도, 풍속 정보를 조회합니다.",
prompt = "서울 날씨 알려줘, 부산 기온 알려줘 등 실시간 기상 조회", prompt = "서울 날씨 알려줘, 부산 기온 알려줘 등 실시간 기상 조회",
mappingId = "WEATHER_001" mappingId = "WEATHER_001"
) )