weather
Retrieve real-time weather data for any city using the Model Context Protocol Server. Input a city name to get accurate weather information instantly.
Instructions
도시의 날씨 정보를 가져오기
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes | 도시 이름 (예: 런던) |
Input Schema (JSON Schema)
{
"properties": {
"city": {
"description": "도시 이름 (예: 런던)",
"type": "string"
}
},
"required": [
"city"
],
"type": "object"
}