Datakoot Servers Weather & Geo
Weather & Geo · MCP Server

Weather & Geo

US forecasts, live conditions and severe-weather alerts (National Weather Service), plus geocoding, elevation and worldwide earthquakes (USGS/Census). No API key.

terminal
$ claude mcp add --transport http weather-intel https://weather.datakoot.com/mcp
Endpoint: weather.datakoot.com/mcp6 toolsSources: NWS · USGS · CensusKeyless
The tools

Everything this server exposes.

The exact tools your agent sees, with their real parameters and the shape of what comes back. Descriptions are written for the model, so it knows when to call each one on its own.

geocodeSource: US Census

Convert a US street address to latitude/longitude. Use first when you have an address but need coordinates for the weather/elevation tools.

Parameters
addressstringrequired
A US street address.
geocode("1600 Pennsylvania Ave NW, Washington DC")
{
  "address": "1600 Pennsylvania Ave NW, Washington, DC",
  "lat": 38.8977,
  "lon": -77.0365
}
weather_forecastSource: NWS

A multi-day US forecast by lat/lon — named periods (Today, Tonight…) with temperature, wind and a short + detailed forecast.

Parameters
latnumberrequired
Latitude.
lonnumberrequired
Longitude.
hourlybooleanoptional
Return the hourly forecast instead of daily periods.
weather_forecast(38.90,-77.04)
{
  "location": "Washington, DC",
  "periods": [
    {
      "name": "Today",
      "temp": 88,
      "unit": "F",
      "short": "Sunny"
    },
    {
      "name": "Tonight",
      "temp": 72,
      "unit": "F",
      "short": "Clear"
    }
  ]
}
weather_currentSource: NWS

Latest observed conditions from the nearest NWS station — temperature, humidity, wind and a text description.

Parameters
latnumberrequired
Latitude.
lonnumberrequired
Longitude.
weather_current(38.90,-77.04)
{
  "station": "KDCA",
  "temp": 84,
  "unit": "F",
  "humidity": 55,
  "wind": "SW 8 mph",
  "text": "Mostly Sunny"
}
weather_alertsSource: NWS

Active NWS alerts (warnings, watches, advisories) for a US state or marine area. Pass a two-letter code.

Parameters
areastringrequired
Two-letter state code, e.g. FL.
weather_alerts("FL")
{
  "area": "FL",
  "count": 2,
  "alerts": [
    {
      "event": "Heat Advisory",
      "severity": "Moderate",
      "headline": "Heat index up to 108"
    }
  ]
}
earthquakesSource: USGS

Recent earthquakes worldwide — filter by minimum magnitude, look-back window, and optionally a point + radius.

Parameters
min_magnitudenumberoptional
Minimum magnitude.
daysintegeroptional
Look-back window in days.
latnumberoptional
Center latitude (optional).
lonnumberoptional
Center longitude (optional).
earthquakes(4.5,1)
{
  "count": 3,
  "quakes": [
    {
      "mag": 5.1,
      "place": "95 km SE of Loyalty Islands",
      "time": "2026-08-13T04:12Z",
      "depthKm": 35
    }
  ]
}
elevationSource: USGS

Ground elevation at a US latitude/longitude, in feet and meters.

Parameters
latnumberrequired
Latitude.
lonnumberrequired
Longitude.
elevation(39.74,-105.99)
{
  "lat": 39.74,
  "lon": -105.99,
  "feet": 5807,
  "meters": 1770
}
Data sources

Three official feeds.

Forecasts and alerts from the National Weather Service; quakes and elevation from USGS; geocoding from the US Census.

National Weather Service

Forecasts, live conditions and severe-weather alerts for the US — weather_forecast, weather_current, weather_alerts.

USGS

Worldwide earthquakes and US ground elevation.

US Census Geocoder

Turns US street addresses into coordinates for the weather tools.

Connect it

One line, any MCP client.

Same endpoint everywhere. No account, no key, no config file.

Claude
claude mcp add --transport http weather-intel https://weather.datakoot.com/mcp
Cursor
Settings → MCP → Add → https://weather.datakoot.com/mcp
Windsurf
Add MCP server → https://weather.datakoot.com/mcp
Weather & Geo — FAQ

Questions about this server

Weather, alerts, geocoding and elevation cover the US. Earthquakes are worldwide via USGS.

Read live from the National Weather Service, so active alerts and the latest forecast periods are always current.

No — one keyless line; Datakoot handles the NWS, USGS and Census calls.

Give your agent eyes on the sky.

Free to start. One line. No key to leak.