get-forecast
Retrieve weather forecasts for specific locations using latitude and longitude. Ideal for integrating weather data into applications via the Weather MCP Server.
Instructions
Get weather forecast for a location
Input Schema
Name | Required | Description | Default |
---|---|---|---|
latitude | Yes | Latitude of the location | |
longitude | Yes | Longitude of the location |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"latitude": {
"description": "Latitude of the location",
"maximum": 90,
"minimum": -90,
"type": "number"
},
"longitude": {
"description": "Longitude of the location",
"maximum": 180,
"minimum": -180,
"type": "number"
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
}