AI-native weather enrichment. Ask Claude to correlate business metrics with weather, forecast impact, find anomalies.
pip install PyWeatherEnriched>=1.0from pyweatherenriched import WeatherEnricher
# Create enricher
enricher = WeatherEnricher()
# Enable MCP (starts on port 8769)
endpoint = enricher.start_mcp_connector()
# Claude can now:
# - "Which locations were affected by storms last week?"
# - "Correlate our sales with rainfall events"
# - "Show enrichment coverage by region"
# - "Forecast weather impact on revenue next week"get_enrichment_status— Coverage & data quality by locationquery_enriched_data— Time-series weather metricsget_weather_events— Storm, heat, cold, flood detectionget_location_coverage— Regional coverage gapsdetect_weather_anomalies— Find unusual patternscorrelate_business_metric— Link sales/traffic to weatherforecast_weather_impact— Predict impact on businessexport_enriched_data— Multi-format exportvalidate_enrichment_quality— Quality assessmentget_hyperlocal_weather— Neighborhood-level precision
For full documentation, see README.md