OpenWeatherMap MCP Server

OpenWeatherMap MCP Server

Integrates OpenWeatherMap API with MCP to provide weather data, forecasts, air quality, maps, alerts, and geocoding via natural language.

Category
Visit Server

README

OpenWeatherMap MCP Server

English | δΈ­ζ–‡

A comprehensive OpenWeatherMap API integration server based on Model Context Protocol (MCP), providing AI assistants with full weather data access capabilities.

🌟 Key Features

Core Weather Functions

  • 🌑️ Current Weather Query - Real-time weather data including temperature, humidity, wind speed, pressure, etc.
  • πŸ“… Weather Forecast - 5-day/3-hour interval detailed weather forecasts with trend analysis
  • 🏭 Air Quality Monitoring - Real-time air quality index and pollutant concentration data
  • πŸ—ΊοΈ Weather Maps - Multi-layer weather map tiles (clouds, precipitation, temperature, etc.)
  • ⚠️ Weather Alerts - Government-issued weather warnings and safety advisories
  • πŸ“Š Historical Weather - Historical weather data queries and multi-day comparison analysis

Smart City Name Query

  • 🧠 Intelligent Fallback - Automatically handles both Chinese and English city names
  • πŸ”„ Auto-Geocoding - When direct city name query fails, automatically uses geocoding to get coordinates
  • 🌍 Universal Support - Works with city names in any language through geocoding API

Additional Features

  • 🌍 Geocoding - Place name to coordinates conversion with fuzzy search support
  • πŸ“ Reverse Geocoding - Coordinates to place name conversion
  • πŸ”„ Multi-Unit Support - Metric, Imperial, and Standard unit systems
  • 🌐 Multi-Language Support - Chinese, English, and many other languages

πŸ“¦ Installation

Prerequisites

  • Node.js 18.0.0 or higher
  • OpenWeatherMap API key

Get API Key

  1. Visit OpenWeatherMap
  2. Register an account and get a free API key
  3. Set environment variable:
    export OPENWEATHER_API_KEY="your_api_key_here"
    

Installation Methods

Method 1: NPM Global Installation

npm install -g openweather-mcp

Method 2: Build from Source

git clone https://github.com/QianJue-CN/OpenWeatherMCP.git
cd OpenWeatherMCP
npm install
npm run build

πŸš€ Usage

Run as MCP Server

# Set API key
export OPENWEATHER_API_KEY="your_api_key_here"

# Start server
npx openweather-mcp

Configure in Claude Desktop

Add to Claude Desktop configuration file:

{
  "mcpServers": {
    "openweather": {
      "command": "npx",
      "args": ["openweather-mcp"],
      "env": {
        "OPENWEATHER_API_KEY": "your_api_key_here"
      }
    }
  }
}

Use with Other MCP Clients

Any MCP protocol-compatible client can connect to this server.

πŸ› οΈ Available Tools

1. Current Weather Query (get_current_weather)

Get real-time weather information for specified location.

Parameters:

  • city (optional): City name, e.g., "Beijing" or "εŒ—δΊ¬" or "Beijing,CN"
  • lat (optional): Latitude (-90 to 90)
  • lon (optional): Longitude (-180 to 180)
  • zip (optional): Postal code, e.g., "10001,US"
  • units (optional): Unit system (metric/imperial/standard)
  • lang (optional): Language code (zh_cn/en/es/fr/de/ja/ko/ru)

Smart City Name Support:

  • βœ… "εŒ—δΊ¬" (Chinese) β†’ Automatically works
  • βœ… "Beijing" (English) β†’ Automatically works
  • βœ… "上桷" (Chinese) β†’ Automatically works
  • βœ… "Shanghai" (English) β†’ Automatically works

Example:

{
  "city": "εŒ—δΊ¬",
  "units": "metric",
  "lang": "zh_cn"
}

2. Weather Forecast (get_weather_forecast)

Get 5-day weather forecast data.

Parameters:

  • Location parameters same as above
  • cnt (optional): Number of forecast time points (max 40)

Example:

{
  "lat": 39.9042,
  "lon": 116.4074,
  "cnt": 16,
  "units": "metric"
}

3. Air Quality (get_air_quality)

Get air quality data.

Parameters:

  • lat: Latitude
  • lon: Longitude
  • start (optional): Start timestamp (for historical data)
  • end (optional): End timestamp (for historical data)

4. Weather Maps (get_weather_map)

Get weather map tiles.

Parameters:

  • layer: Layer type (clouds_new/precipitation_new/pressure_new/wind_new/temp_new)
  • z: Zoom level (0-10)
  • x: Tile X coordinate
  • y: Tile Y coordinate

5. Weather Alerts (get_weather_alerts)

Get weather warning information.

Parameters:

  • lat: Latitude
  • lon: Longitude

6. Historical Weather (get_historical_weather)

Query historical weather data.

Parameters:

  • lat: Latitude
  • lon: Longitude
  • dt: Unix timestamp for query date
  • units: Unit system
  • lang: Language code

7. Geocoding (geocoding)

Get coordinates from place names.

Parameters:

  • q: Location query string
  • limit: Number of results to return (1-5)

8. Reverse Geocoding (reverse_geocoding)

Get place names from coordinates.

Parameters:

  • lat: Latitude
  • lon: Longitude
  • limit: Number of results to return (1-5)

πŸ“ Usage Examples

Query Beijing Current Weather

{
  "tool": "get_current_weather",
  "parameters": {
    "city": "εŒ—δΊ¬",
    "units": "metric",
    "lang": "zh_cn"
  }
}

Get Shanghai 5-Day Weather Forecast

{
  "tool": "get_weather_forecast",
  "parameters": {
    "city": "上桷",
    "units": "metric",
    "lang": "zh_cn"
  }
}

Query Air Quality

{
  "tool": "get_air_quality",
  "parameters": {
    "lat": 39.9042,
    "lon": 116.4074
  }
}

🌍 How Smart City Name Query Works

  1. Direct Query: First attempts to query weather using the provided city name directly
  2. Auto Fallback: If direct query fails (404 error), automatically triggers geocoding
  3. Coordinate Conversion: Converts city name to precise coordinates via geocoding API
  4. Re-query: Uses obtained coordinates to re-query weather data
  5. Seamless Experience: The entire process is transparent to users, no manual handling required

This means you can use city names in any language:

  • Chinese: εŒ—δΊ¬γ€δΈŠζ΅·γ€εΉΏε·žγ€ζ·±εœ³
  • English: Beijing, Shanghai, Guangzhou, Shenzhen
  • Other languages: 東京、ソウル、Paris, London

πŸ”§ Development

Project Structure

src/
β”œβ”€β”€ index.ts              # MCP server entry point
β”œβ”€β”€ types/
β”‚   β”œβ”€β”€ weather.ts        # Weather data type definitions
β”‚   └── mcp.ts           # MCP tool type definitions
β”œβ”€β”€ services/
β”‚   └── openweather.ts   # OpenWeatherMap API service
└── tools/
    β”œβ”€β”€ current-weather.ts    # Current weather tool
    β”œβ”€β”€ forecast.ts          # Weather forecast tool
    β”œβ”€β”€ air-pollution.ts     # Air quality tool
    β”œβ”€β”€ weather-maps.ts      # Weather maps tool
    β”œβ”€β”€ weather-alerts.ts    # Weather alerts tool
    └── historical-weather.ts # Historical weather tool

Build and Test

# Install dependencies
npm install

# Build project
npm run build

# Development mode (watch file changes)
npm run dev

# Run tests
npm test

# Code linting
npm run lint

🌍 Supported Location Formats

City Names

  • "εŒ—δΊ¬" - Chinese city name
  • "Beijing" - English city name
  • "Beijing,CN" - City name + country code
  • "New York,US" - Full format

Coordinates

  • Latitude: -90 to 90
  • Longitude: -180 to 180
  • Example: lat: 39.9042, lon: 116.4074

Postal Codes

  • "10001,US" - US postal code
  • "100000,CN" - Chinese postal code

πŸ“Š Data Formats

Temperature Units

  • metric: Celsius (Β°C)
  • imperial: Fahrenheit (Β°F)
  • standard: Kelvin (K)

Wind Speed Units

  • metric: Meters per second (m/s)
  • imperial: Miles per hour (mph)

Language Support

  • zh_cn: Simplified Chinese
  • en: English
  • es: Spanish
  • fr: French
  • de: German
  • ja: Japanese
  • ko: Korean
  • ru: Russian

⚠️ Important Notes

  1. API Limits: Free accounts have call limits, please use reasonably
  2. Historical Data: Historical weather data requires paid subscription
  3. One Call API: Weather alerts feature requires One Call API 3.0 subscription
  4. Network Connection: Ensure server can access OpenWeatherMap API

🀝 Contributing

Issues and Pull Requests are welcome!

πŸ“„ License

MIT License

πŸ”— Related Links

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured