get-daily-forecast
Retrieve daily weather forecasts for up to 8 days using OpenWeatherMap MCP Server. Input location, units (metric, imperial, standard), and forecast days. Includes today's weather option.
Instructions
Get daily weather forecast for up to 8 days
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days | No | Number of days to forecast (1-8, default: 8) | |
include_today | No | Include today's forecast (default: false) | |
location | Yes | City name (e.g., 'New York') or coordinates (e.g., 'lat,lon') | |
units | No | Temperature units: metric (Celsius), imperial (Fahrenheit), or standard (Kelvin) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"days": {
"description": "Number of days to forecast (1-8, default: 8)",
"maximum": 8,
"minimum": 1,
"type": "number"
},
"include_today": {
"description": "Include today's forecast (default: false)",
"type": "boolean"
},
"location": {
"description": "City name (e.g., 'New York') or coordinates (e.g., 'lat,lon')",
"type": "string"
},
"units": {
"description": "Temperature units: metric (Celsius), imperial (Fahrenheit), or standard (Kelvin)",
"enum": [
"metric",
"imperial",
"standard"
],
"type": "string"
}
},
"required": [
"location"
],
"type": "object"
}