get-forecast
Retrieve a 7-day weather forecast for any city, including daily temperatures, precipitation, and sunrise/sunset times, using the MCP Weather Server.
Instructions
Get 7-day weather forecast for any city including daily temperatures, precipitation, and sunrise/sunset times
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes | The name of the city to get forecast information for (e.g., 'New York', 'London', 'Tokyo') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"city": {
"description": "The name of the city to get forecast information for (e.g., 'New York', 'London', 'Tokyo')",
"maxLength": 100,
"minLength": 1,
"type": "string"
}
},
"required": [
"city"
],
"type": "object"
}