get-weather-forecast
Retrieve weather forecasts by specifying a city's latitude and longitude using this MCP-Server tool. Simplify access to accurate weather data for planning and decision-making.
Instructions
根据经纬度获取天气信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"city": {
"type": "string"
}
},
"type": "object"
}