weather_api
Retrieve real-time weather data for any city using Open-Meteo API integration on the Model Context Protocol Server.
Instructions
Open-Meteo API를 사용하여 도시의 실제 날씨 정보를 가져오기
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes | 날씨를 가져올 도시 이름 |
Input Schema (JSON Schema)
{
"properties": {
"city": {
"description": "날씨를 가져올 도시 이름",
"type": "string"
}
},
"required": [
"city"
],
"type": "object"
}