Weather forecasting service
## AccuWeather MCP Server: Weather Data and Forecasts The **AccuWeather MCP Server** integrates AccuWeather services into Google Antigravity, enabling AI-assisted access to weather data, forecasts, and severe weather alerts for any location worldwide. ### Why AccuWeather MCP? - **Global Coverage**: Weather data for locations worldwide - **Accurate Forecasts**: Industry-leading forecast accuracy - **Minute-Cast**: Minute-by-minute precipitation forecasts - **Severe Alerts**: Real-time severe weather warnings - **Historical Data**: Access to historical weather data ### Key Features #### 1. Current Conditions ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get current weather conditions for New York City" }] ) ``` #### 2. Forecasts ```python # Get forecasts response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show 5-day forecast with hourly details for tomorrow" }] ) ``` #### 3. Alerts ```python # Check alerts response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Are there any severe weather alerts for my area?" }] ) ``` #### 4. Historical ```python # Access history response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get historical temperature data for the past month" }] ) ``` ### Configuration ```json { "mcpServers": { "accuweather": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-accuweather"], "env": { "ACCUWEATHER_API_KEY": "your-api-key" } } } } ``` ### Use Cases **Weather Planning**: Plan activities based on accurate forecasts. **Severe Weather**: Stay informed about dangerous conditions. **Agriculture**: Monitor weather for farming decisions. **Events**: Plan outdoor events with confidence. The AccuWeather MCP Server brings comprehensive weather data into your workflow.
{
"mcpServers": {
"accuweather": {
"mcpServers": {
"accuweather": {
"env": {
"ACCUWEATHER_API_KEY": "your-api-key"
},
"args": [
"-y",
"accuweather-mcp-server"
],
"command": "npx"
}
}
}
}
}