Server data from the Official MCP Registry
WeatherAI — 11 live weather tools for Claude, Cursor, Windsurf and any MCP AI assistant
WeatherAI — 11 live weather tools for Claude, Cursor, Windsurf and any MCP AI assistant
Valid MCP server (2 strong, 3 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.
3 files analyzed · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: YOUR_API_KEY
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-weatherai-io-weatherai": {
"env": {
"YOUR_API_KEY": "your-your-api-key-here"
},
"args": [
"-y",
"@weatherai/mcp-server"
],
"command": "npx"
}
}
}From the project's GitHub README.
11 live weather tools for your AI assistant — one URL, no setup.
The WeatherAI MCP server gives Claude Desktop, Cursor, Windsurf, and any MCP-compatible AI assistant instant access to real-time weather, forecasts, historical data, air quality, astronomy, solar irradiance, and a plain-English AI weather interface.
Hosted endpoint: https://api.weatherai.io/mcp
Transport: Streamable HTTP (stateless, MCP spec 2025-03-26)
Auth: API key via query param, header, or Bearer token
Free tier: 1,000 standard calls/day · 50 premium calls/day
Sign up at weatherai.io — no credit card required.
Replace YOUR_API_KEY with the key from your dashboard.
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or
%APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"weatherai": {
"url": "https://api.weatherai.io/mcp?apiKey=YOUR_API_KEY"
}
}
}
Restart Claude Desktop after saving.
Go to Cursor → Settings → MCP or edit ~/.cursor/mcp.json:
{
"mcpServers": {
"weatherai": {
"url": "https://api.weatherai.io/mcp?apiKey=YOUR_API_KEY"
}
}
}
Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"weatherai": {
"url": "https://api.weatherai.io/mcp?apiKey=YOUR_API_KEY",
"type": "http"
}
}
}
mcp.json){
"mcpServers": {
"weatherai": {
"url": "https://api.weatherai.io/mcp?apiKey=YOUR_API_KEY",
"type": "http",
"transport": "streamable-http"
}
}
}
"What's the weather like in Tokyo right now?"
"Will it rain in London this weekend?"
"What were temperatures in Paris on 14 July 2023?"
"What's the air quality like in Beijing?"
"When does the sun set in Dubai today?"
All 11 tools are registered automatically — no configuration needed.
| Tool | Tier | Description | Key Parameters |
|---|---|---|---|
get_current_weather | Standard | Real-time conditions for any location | location, units |
get_weather_forecast | Standard | Daily & hourly forecast up to 14 days | location, days (1–14), units |
get_historical_weather | Premium | Actual past weather for any date | location, date (YYYY-MM-DD), units |
get_future_weather | Premium | Predictions 14–300 days ahead | location, start_date, end_date, units |
get_air_quality | Standard | AQI, PM2.5, PM10, CO, NO2, SO2, O3 | location |
get_weather_alerts | Standard | Active government weather warnings | location |
get_astronomy | Standard | Sunrise, sunset, moon phase & illumination | location, date |
get_solar_data | Premium | Solar irradiance & energy estimates | location, date, units |
get_timezone | Standard | UTC offset, local time, DST status | location |
search_locations | Standard | Find cities/places by partial name | query |
ask_ai_weather | Premium | Plain-English weather questions via Claude AI | question |
get_current_weatherReturns temperature, feels-like, humidity, wind speed/direction, UV index, visibility, pressure, and cloud cover.
location (required) City name, US zip, UK postcode, lat/lon, or IP address
units (optional) "metric" | "imperial" — default: metric
get_weather_forecastDaily high/low and hourly breakdown for up to 14 days including precipitation chance and UV index.
location (required) City name, zip/postcode, coordinates, or IP address
days (optional) 1–14 — default: 3
units (optional) "metric" | "imperial" — default: metric
get_historical_weatherHour-by-hour actual recorded weather for any past date.
location (required) City name, zip/postcode, coordinates, or IP address
date (required) YYYY-MM-DD format — must be a past date
units (optional) "metric" | "imperial" — default: metric
get_future_weatherAI-enhanced extended forecast from 14 to 300 days into the future. Costs 2 premium credits per request.
location (required) City name, zip/postcode, coordinates, or IP address
start_date (required) YYYY-MM-DD — 14–300 days from today
end_date (optional) YYYY-MM-DD — max 30 days per request
units (optional) "metric" | "imperial" — default: metric
get_air_qualityReal-time AQI index plus individual pollutant readings (PM2.5, PM10, CO, NO2, SO2, O3).
location (required) City name, zip/postcode, coordinates, or IP address
get_weather_alertsActive government-issued storm, flood, heat, and other weather warnings.
location (required) City name, zip/postcode, coordinates, or IP address
get_astronomySunrise, sunset, moonrise, moonset, moon phase name, and illumination percentage.
location (required) City name, zip/postcode, coordinates, or IP address
date (optional) YYYY-MM-DD — defaults to today
get_solar_dataSolar irradiance (W/m²) and estimated daily energy generation (kWh/m²).
location (required) City name, zip/postcode, coordinates, or IP address
date (optional) YYYY-MM-DD — defaults to today
units (optional) "metric" | "imperial" — default: metric
get_timezoneIANA timezone name, UTC offset (hours), current local time, and DST active flag.
location (required) City name, zip/postcode, coordinates, or IP address
search_locationsReturns up to 10 matching places with name, region, country, and coordinates.
query (required) Partial or full city/location name
ask_ai_weather ⭐Ask any weather question in plain English. The AI interprets the intent, calls the relevant tools, and returns a natural-language answer plus the underlying JSON data. Costs 2 premium credits per request.
question (required) e.g. "Will it be good weather for hiking in the Lake District next weekend?"
Three methods are supported — all equivalent:
| Method | Example |
|---|---|
| Query parameter | https://api.weatherai.io/mcp?apiKey=YOUR_KEY |
X-API-Key header | X-API-Key: YOUR_KEY |
| Bearer token | Authorization: Bearer YOUR_KEY |
Query parameter is recommended for client config files. Use headers for programmatic access.
| Tier | Free Allowance | Overage |
|---|---|---|
| Standard tools | 1,000 calls/day | $0.0005 / call |
| Premium tools | 50 calls/day | $0.001 / call |
Credits are prepaid — top up from your dashboard. No subscription required.
Standard tools: get_current_weather, get_weather_forecast, get_air_quality, get_weather_alerts, get_astronomy, get_timezone, search_locations
Premium tools: get_historical_weather, get_future_weather, get_solar_data, ask_ai_weather
| File | URL |
|---|---|
| MCP manifest | /.well-known/mcp.json |
| LLM context | /llms.txt |
| OpenAPI spec | /openapi.yaml |
This repository contains the MCP server implementation. The server runs as part of the WeatherAI.io platform at https://api.weatherai.io/mcp.
src/index.ts is a self-contained adaptation that can also be run standalone:
npm install
WEATHERAI_API_KEY=your_key npm start
The standalone server listens on PORT (default 3000) and exposes the same /mcp endpoint.
MIT — see LICENSE.
Built by Zoomash Ltd, England (Company No. 7838145).
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.