Get current weather, forecasts, and air quality via OpenWeatherMap API. Requires free API key.
30+ deploysclaude mcp add openweather --url https://datafaucet.dev/api/mcp/t/openweather
Run this command in your terminal · most users connect in under 60s
get_weather
Get current temperature, humidity, wind, and conditions by city name. Returns feels_like and visibility.
https://api.openweathermap.org/data/2.5/weather?appid={api_key}&q={city}
get_forecast
Get 5-day / 3-hour forecast by city with temperature, humidity, wind, and precipitation probability.
https://api.openweathermap.org/data/2.5/forecast?appid={api_key}&q={city}
geocode_city
Geocode city name to latitude/longitude coordinates with country code and state.
https://api.openweathermap.org/geo/1.0/direct?appid={api_key}&q={city}
get_air_pollution
Get AQI (1-5 scale), CO, NO2, O3, SO2, PM2.5, and PM10 concentrations by coordinates.
https://api.openweathermap.org/data/2.5/air_pollution?appid={api_key}&lat={lat}&lon={lon}
get_weather_by_coords
Get current weather by latitude and longitude. Pass 'units' (standard/metric/imperial).
https://api.openweathermap.org/data/2.5/weather?appid={api_key}&lat={lat}&lon={lon}&units={units}
get_hourly_forecast
Get 3-hour step forecast by coordinates. Use 'cnt' to limit entries (max 40, default 8 = 24h).
https://api.openweathermap.org/data/2.5/forecast?appid={api_key}&lat={lat}&lon={lon}&cnt={count}
get_uv_index
Get current UV index by coordinates. Returns value on 0-11+ scale with date.
https://api.openweathermap.org/data/2.5/uvi?appid={api_key}&lat={lat}&lon={lon}
Run this in your terminal:
claude mcp add openweather https://datafaucet.dev/api/mcp/t/openweather
Connect OpenWeatherMap to your AI agent in under 60 seconds. No account required.
{notion_token}) with your real credentialsNeed API keys? Try our free sandbox templates first to see MCP in action with zero setup.
Replace these placeholders with your real values before deploying:
{api_key}API settings page{city}Your value{count}Your value{lat}Your value{lon}Your value{units}Your valuePreview:
GET https://api.openweathermap.org/data/2.5/weather?appid={api_key}&q={city}claude mcp add openweather --url https://datafaucet.dev/api/mcp/t/openweatherWhat your AI agent sees
I have access to 7 tools from OpenWeatherMap: get_weather, get_forecast, geocode_city, and 4 more.
“Get current temperature, humidity, wind, and conditions by city name. Returns feels_like and visibility.”
Calling get_weather... Done. Here are the results.
Try these prompts
“What's the current temperature and humidity in San Francisco?”
Copy“Compare the weather in 3 cities and recommend the warmest”
Copy“Get the 5-day forecast for Paris and flag any rainy days”
CopyClick any prompt to copy, then paste into your AI client.