Weather MCP server: GeoSphere Austria high-resolution data for Austria/Alps, Open-Meteo worldwide.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent — or use 1-click editor setup below.
💡 Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
MCP server for weather: current conditions, hourly forecasts, storm outlooks, and air quality for Austria and the Alpine region, via the Model Context Protocol.
It serves high-resolution GeoSphere Austria data — the AROME numerical forecast, the INCA analysis/nowcast, the C-LAEF ensemble for precipitation probability, and the WRF-Chem air-quality forecast. There is no worldwide fallback: a point outside the AROME grid returns an out-of-coverage notice, so pair this with a global weather source if you need one. Every response states which datasets produced it.
Output is compact emoji-markdown with metric units — built for smart-home and voice-assistant LLM pipelines where a terse, readable answer beats a JSON blob. Weather conditions are derived from physical parameters and reported with the Home Assistant condition vocabulary (sunny, partlycloudy, rainy, snowy, …).
| Where | get_current_weather | get_hourly_forecast | get_storm_outlook | get_air_quality |
|---|---|---|---|---|
| Austria | INCA + nowcast + AROME | AROME (≤60 h) + C-LAEF probability | AROME, CAPE gated by CIN | WRF-Chem (3 km) |
| Alps (non-AT) | AROME only | AROME (≤60 h) + C-LAEF probability | AROME, CAPE gated by CIN | WRF-Chem (3 km) |
| Rest of world | not served | not served | not served | not served |
Coverage is decided by the API, not by a bounding box you configure: GeoSphere answers HTTP 400 for a point outside the grid, and the server renders that as
That line is deliberately distinct from the transient failures (⚠️ Timeout…, ⚠️ No weather data available): being outside coverage is a permanent property of the location, so retrying will never help. It names no grid on purpose — the forecast tools query AROME (2.5 km) and get_air_quality queries WRF-Chem (3 km), so a point can be inside one and outside the other.
There is no multi-day forecast. GeoSphere publishes nothing beyond AROME's ~60 h, so the longest answer this server can give is roughly two and a half days of hourly rows.
Pass decimal latitude/longitude to every tool. There is no geocoder in the server — the calling LLM geocodes city names to coordinates itself.
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
It is a standard stdio MCP server, so it runs anywhere an stdio MCP server can be hosted — including alongside Home Assistant's Assist pipeline (register it the same way as any other stdio MCP server). Give the voice agent the coordinates of the places it should answer for, or let it geocode names.
get_current_weatherCurrent conditions for a point, from INCA, the 15-minute nowcast, and AROME.
| Parameter | Type | Default | Description |
|---|---|---|---|
latitude | float | required | Decimal latitude (e.g. 48.2208) |
longitude | float | required | Decimal longitude (e.g. 16.3738) |
get_hourly_forecastHour-by-hour forecast from AROME, with C-LAEF precipitation probability, up to ~60 h.
| Parameter | Type | Default | Description |
|---|---|---|---|
latitude | float | required | Decimal latitude (e.g. 48.2208) |
longitude | float | required | Decimal longitude (e.g. 16.3738) |
hours | int | 24 | Forecast hours (clamped to 1–60) |
start | string | now | Optional ISO 8601 start (e.g. 2026-07-22T15:00); forecast begins at/after this instant |
The hours are grouped under a day-divider header (%a %Y-%m-%d in the point's local timezone) that repeats whenever the local date changes, so a window crossing midnight stays unambiguous. Requesting more hours than the AROME horizon provides appends a note naming where the horizon ends — there is nothing further ahead to reach for. Dry hours omit the precipitation and probability parts.
get_storm_outlookSevere-weather outlook: peak gusts and thunderstorm timing. Reports figures, never a severity verdict — what counts as dangerous is the caller's judgement.
| Parameter | Type | Default | Description |
|---|---|---|---|
latitude | float | required | Decimal latitude (e.g. 48.2208) |
longitude | float | required | Decimal longitude (e.g. 16.3738) |
Two behaviours are worth knowing before you build on this:
Next thunderstorm can be in the past, by up to 59 minutes, when the storm hour is the one already under way. That means a storm is in progress — clamp a negative lead time to zero rather than assuming the stamp is in the future.none in the next 54 h). AROME nominally runs ~60 h, but a stale or truncated run reaches less far, so the span is measured from the rows actually returned. It is not an all-clear beyond the stated span.A thunderstorm hour is one whose derived condition is lightning/lightning-rainy, or one where CAPE ≥ 1000 J/kg with weak inhibition and precipitation is forecast — the second branch catches thundersnow and hours with missing cloud data, and requires precipitation so that a dry high-CAPE afternoon does not raise a signal. Thunderstorm expected and Next thunderstorm both report unknown rather than a confident answer when the forecast holds no usable hour.
get_air_qualityPollutant concentrations now, plus the European Air Quality Index for today, tomorrow and in two days.
| Parameter | Type | Default | Description |
|---|---|---|---|
latitude | float | required | Decimal latitude (e.g. 48.2208) |
longitude | float | required | Decimal longitude (e.g. 16.3738) |
The AQI is reported as its 1–6 EEA band (1 good … 6 extremely poor), which is what GeoSphere publishes — there is no underlying numeric index to show alongside it. These are model forecasts, not station measurements — expect them to track a nearby monitoring station without matching it.
A point inside the 3 km grid can still come back empty when a WRF-Chem run is stale or incomplete; the response then says No air-quality data available for this location and still names the source, which is a different answer from being out of coverage.
The API is keyless and intended for non-commercial use. When you redistribute its data, keep the attribution.
The GeoSphere Dataset API allows 5 requests/second and 240 requests/hour. Each call issues a small burst of concurrent requests (three for current weather, two for hourly and air quality, one for the storm outlook); on an HTTP 429 the server retries once (when the API asks for a short wait) and otherwise returns a rate-limit notice.
MIT
No reviews yet — be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/geosphere-austria-weather)<a href="https://allmcps.com/mcp/geosphere-austria-weather"><img src="https://allmcps.com/api/badge/geosphere-austria-weather?style=directory" alt="GeoSphere Austria Weather on AllMCPs" /></a>