get-weather
Retrieve real-time, hourly, or extended weather forecasts for specific locations in China by providing latitude and longitude coordinates with HeFeng Weather MCP Server.
Instructions
获取中国国内的天气预报
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days | No | 预报天数,now为实时天气,24h为24小时预报,72h为72小时预报,168h为168小时预报,3d为3天预报,以此类推 | now |
location | Yes | 逗号分隔的经纬度信息 (e.g., 116.40,39.90) |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"default": "now",
"description": "预报天数,now为实时天气,24h为24小时预报,72h为72小时预报,168h为168小时预报,3d为3天预报,以此类推",
"enum": [
"now",
"24h",
"72h",
"168h",
"3d",
"7d",
"10d",
"15d",
"30d"
],
"type": "string"
},
"location": {
"description": "逗号分隔的经纬度信息 (e.g., 116.40,39.90)",
"type": "string"
}
},
"required": [
"location"
],
"type": "object"
}