{"name":"forecast-intel","version":"1.0.0","tools":[{"name":"get_7day_forecast","description":"Get a 7-day weather forecast for any city worldwide: daily high/low temperatures, precipitation amount and probability, wind speed, UV index, and sunrise/sunset times. Powered by Open-Meteo.","inputSchema":{"type":"object","properties":{"location":{"type":"string","description":"City name to get forecast for (e.g. 'New York', 'London', 'Tokyo', 'Sydney', 'Dubai')"},"units":{"type":"string","enum":["metric","imperial"],"description":"Temperature units: 'metric' (°C) or 'imperial' (°F) — default metric"}},"required":["location"]}},{"name":"get_hourly_forecast","description":"Get hour-by-hour weather forecast for the next 24-48 hours: temperature, feels-like, humidity, precipitation chance, and wind speed. Useful for planning outdoor activities by the hour.","inputSchema":{"type":"object","properties":{"location":{"type":"string","description":"City name (e.g. 'Paris', 'Chicago', 'Singapore')"},"hours":{"type":"number","description":"Number of hours ahead to forecast (default 24, max 48)"}},"required":["location"]}},{"name":"get_weather_alerts","description":"Get current conditions + weather alerts for a city: UV index levels (with protective recommendations), freezing temperatures, heavy rain, strong winds, and thunderstorm warnings for the next 3 days.","inputSchema":{"type":"object","properties":{"location":{"type":"string","description":"City name to check for weather alerts (e.g. 'Miami', 'Phoenix', 'Seattle')"}},"required":["location"]}}]}