get-world-weather
Retrieve accurate weather forecasts globally by providing latitude and longitude coordinates using this tool on the MCP server for real-time weather insights.
Instructions
获取全世界的天气预报
Input Schema
Name | Required | Description | Default |
---|---|---|---|
latitude | Yes | 纬度 | |
longitude | Yes | 经度 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"latitude": {
"description": "纬度",
"maximum": 90,
"minimum": -90,
"type": "number"
},
"longitude": {
"description": "经度",
"maximum": 180,
"minimum": -180,
"type": "number"
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
}