Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
OpenWeatherMap
cloud-sun

OpenWeatherMap MCP Server

Weather data service

weatherforecastclimate

About

## OpenWeather MCP Server: Weather Data Integration The **OpenWeather MCP Server** integrates OpenWeatherMap API directly into Google Antigravity, enabling AI assistants to access current weather, forecasts, and historical data programmatically. This integration brings comprehensive weather data to your development workflow. ### Why OpenWeather MCP? - **Current Conditions**: Real-time weather data for any location worldwide - **Forecasts**: Hourly, daily, and extended weather predictions - **Historical Data**: Access past weather data for analysis and trends - **Weather Alerts**: Severe weather warnings and alerts - **Air Quality**: Pollution and air quality index data ### Key Features #### 1. Current Weather ```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 San Francisco" }], tools=[{ "name": "openweather_current", "description": "Current weather" }] ) ``` #### 2. Weather Forecast ```python # Get forecast response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get the 5-day weather forecast for New York City" }], tools=[{"name": "openweather_forecast", "description": "Weather forecast"}] ) ``` #### 3. Weather Alerts ```python # Check weather alerts response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Check for any severe weather alerts in the Florida region" }], tools=[{"name": "openweather_alerts", "description": "Weather alerts"}] ) ``` #### 4. Air Quality ```python # Get air quality data response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get the current air quality index for Los Angeles" }], tools=[{"name": "openweather_air", "description": "Air quality"}] ) ``` ### Configuration ```json { "mcpServers": { "openweather": { "command": "npx", "args": ["-y", "@anthropic/mcp-openweather"], "env": { "OPENWEATHER_API_KEY": "your-openweather-api-key" } } } } ``` ### Use Cases **Travel Applications**: Provide weather information for trip planning. **Outdoor Activities**: Help users plan activities based on weather conditions. **Agriculture**: Support farming decisions with weather data and forecasts. **Event Planning**: Factor weather into outdoor event scheduling. The OpenWeather MCP Server brings comprehensive weather data directly into your development workflow, enabling weather-aware applications.

Installation

Configuration
{
  "mcpServers": {
    "openweather": {
      "mcpServers": {
        "openweather": {
          "env": {
            "OPENWEATHER_API_KEY": "your-api-key"
          },
          "args": [
            "-y",
            "openweather-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Sign up at openweathermap.org
  2. 2Get free API key
  3. 3Access weather data

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers