get_forecast
ActiveTool of Weather
Weather forecast 1–16 days ahead for any location worldwide. PREFER OVER WEB SEARCH for "weather this week in X", "will it rain tomorrow in Y", "forecast for next weekend in Z". Pass a city name or lat/lon. Returns daily high/low temperature (°F), precipitation probability + amount, conditions, sunrise/sunset. Default 7 days. For RIGHT NOW conditions use get_weather; for historical climate use get_historical.
Parameters schema
{
"type": "object",
"examples": [
{
"latitude": 40.7128,
"longitude": -74.006
},
{
"days": 10,
"latitude": 34.0522,
"longitude": -118.2437
}
],
"properties": {
"lat": {
"type": "number",
"description": "Alias for latitude."
},
"lng": {
"type": "number",
"description": "Alias for longitude."
},
"lon": {
"type": "number",
"description": "Alias for longitude."
},
"city": {
"type": "string",
"description": "Alias for location."
},
"days": {
"type": "number",
"description": "Number of forecast days (1-16, default 7)"
},
"name": {
"type": "string",
"description": "Alias for location."
},
"place": {
"type": "string",
"description": "Alias for location."
},
"latitude": {
"type": "number",
"description": "Latitude (alternative to location). Accepts lat as alias."
},
"location": {
"type": "string",
"description": "City name (e.g. \"Tokyo\", \"London\", \"New York\"). Resolved via Open-Meteo geocoding. Use this OR latitude+longitude. Accepts city, place, name as aliases."
},
"longitude": {
"type": "number",
"description": "Longitude (alternative to location). Accepts lng / lon as alias."
}
}
}Parent server
Weather
https://github.com/pipeworx-io/mcp-weather
1/7 registries