Global 8-day weather forecasts
## Weather Weekly MCP Server: Extended Weather Forecasts The **Weather Weekly MCP Server** specializes in providing extended weather forecasts and weekly weather planning data directly within Google Antigravity. This integration brings long-range weather planning capabilities to your development workflow. ### Why Weather Weekly MCP? - **Extended Forecasts**: Access 7-day and 14-day weather predictions - **Weekly Summaries**: Get summarized weather outlooks for the week ahead - **Trend Analysis**: Identify weather patterns and trends over time - **Activity Planning**: Weather recommendations for weekly activities - **Comparative Data**: Compare weather across multiple locations ### Key Features #### 1. Weekly Forecast ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get the weekly weather forecast for Seattle" }], tools=[{ "name": "weather_weekly_forecast", "description": "Weekly forecast" }] ) ``` #### 2. Weather Summary ```python # Get weekly summary response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Summarize next week weather and best days for outdoor activities" }], tools=[{"name": "weather_weekly_summary", "description": "Weekly summary"}] ) ``` #### 3. Location Comparison ```python # Compare locations response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Compare weather forecasts for Miami and San Diego for next week" }], tools=[{"name": "weather_weekly_compare", "description": "Compare locations"}] ) ``` #### 4. Activity Recommendations ```python # Get activity recommendations response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Which days this week are best for hiking in the mountains?" }], tools=[{"name": "weather_weekly_activities", "description": "Activity planning"}] ) ``` ### Configuration ```json { "mcpServers": { "weather-weekly": { "command": "npx", "args": ["-y", "@anthropic/mcp-weather-weekly"], "env": { "WEATHER_API_KEY": "your-weather-api-key" } } } } ``` ### Use Cases **Trip Planning**: Plan vacations and trips with extended weather outlooks. **Event Scheduling**: Choose optimal dates for outdoor events and activities. **Lifestyle Apps**: Provide weekly activity suggestions based on weather. **Agricultural Planning**: Support weekly farm and garden planning decisions. The Weather Weekly MCP Server brings extended weather planning directly into your development workflow, enabling long-range weather integration.
{
"mcpServers": {
"weather-weekly": {
"mcpServers": {
"weather-weekly": {
"env": {
"OPENWEATHER_API_KEY": "YOUR_API_KEY"
},
"args": [
"openweathermap-weekly-mcp"
],
"command": "uvx"
}
}
}
}
}