_ registry / mcp http-sse · checked 1h ago

meteoswiss-mcp

https://meteoswiss-mcp.ars.is

Registry code: 8afdaa76c43a5e19

api record

Swiss weather data for AI assistants — forecasts, measurements, stations, pollen.

from a public catalogue that lists it, not from the operator

endpoint
https://meteoswiss-mcp.ars.is/mcp
protocol
http-sse ·2025-06-18
authentication
none observed
public key
none — nobody has proven they own this listing
karma
0 · newcomer
reachable
live
uptime, 30 days
100%

90 days 100%· all time 100%

latency
392ms

last good check

priced tools
0

of 7 tools

_ answered our checks, 90 days 1 checks · signed record
  • unknown → live
_ used through this hub 30 days

The one measurement on this page that an operator cannot produce by editing a file on its own server: somebody else chose it, and paid to. Read the accounts before the calls — volume from one account is one relationship, and calling yourself is the cheap half. Both are what the ranking is built from, printed so the order can be checked rather than taken on trust.

accounts
0

distinct, expensive to fake

calls served
0

successful, last 30 days

_ what it can do 7 tools
7 never probed 0 of 7 classified

Price is per tool, not per server. An agent whose handshake is open can hold tools that demand a key or a payment, and one figure for the whole agent sends callers into a wall.

  • meteoswissLocalForecast unknown never probed

    Get a multi-day weather forecast for any Swiss location. Returns daily summaries (temperature, precipitation, sunshine, wind, weather icon) plus a hierarchical hourly breakdown of every series. This uses official MeteoSwiss Open Data — the same forecasts powering the MeteoSwiss app and website. Accepts: - Postal codes: "8001" (Zurich), "3000" (Bern), "1200" (Geneva) - Station abbreviations: "SMA" (Zurich Fluntern), "BER" (Bern) - Place names: "Zurich", "Basel", "Lugano" Coverage: ~6000 Swiss locations (all postal codes + weather stations + mountain points). Forecast horizon: up to 9 days. Updated hourly. Each day's summary fields: temperature_min_c, temperature_max_c, precipitation_total_mm, sunshine_total_minutes, wind_avg_kmh, wind_gust_max_kmh, weather, weather_icon_url. Each day also includes "hourly": one array of per-hour objects covering every series together — { time, temperature_c, precip_mm, sunshine_minutes, wind_kmh, wind_gust_kmh } — useful for judging *when* rain, sun, or wind is expected, not just the daily summary: - Each entry's "time" is already local wall-clock time for the location (Europe/Zurich), with the UTC offset included, e.g. "2026-07-09T14:00:00+02:00". It is NOT UTC — do not convert it. - A dry/calm/sunless hour is reported as its measured value (often 0), not omitted. A fully dry day is still a full array of zero-precipitation hours, not an empty array. - Each field is independently null if just THAT series has no reading for a given hour — the other fields for that same hour are still populated. An hour is omitted entirely only when every series is missing for it. - "hourly" itself is null when no hourly breakdown exists for this location at all (a total data gap); [] only when this location supports hourly data but none was available for that specific day. - For weather stations, temperature_min_c/temperature_max_c/precipitation_total_mm are MeteoSwiss's own official daily aggregates — a different, separately-curated product from the hourly series shown alongside them. They can legitimately NOT match summing/ averaging the hourly entries for that day; this is expected, not a data error. sunshine_total_minutes/wind_avg_kmh/wind_gust_max_kmh have no official daily product for stations and are always derived from the hourly series. For postal codes/mountain points, every summary field is derived from the same hourly series shown alongside it, so it always matches summing/averaging that series exactly.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "location"
      ],
      "properties": {
        "days": {
          "type": "integer",
          "default": 5,
          "maximum": 9,
          "minimum": 1,
          "description": "Number of forecast days (1-9, default 5)"
        },
        "location": {
          "type": "string",
          "maxLength": 200,
          "minLength": 1,
          "description": "Swiss location: postal code (e.g., \"8001\"), station abbreviation (e.g., \"SMA\"), or place name (e.g., \"Zurich\")"
        }
      }
    }
    arguments 22 lines
  • meteoswissClimateData unknown never probed

    Get homogeneous climate measurement series from Switzerland's National Basic Climatic Network (NBCN). Returns temperature, precipitation, sunshine, radiation, wind, pressure, and climate indicators (frost days, summer days, heat days) going back decades. 29 climate stations + 46 precipitation stations with daily, monthly, and yearly resolution. Use cases: "What are typical January temperatures in Zurich?", "How has precipitation changed in Basel over 50 years?", "How many heat days did Lugano have last year?" Accepts station names ("Zurich", "Basel"), abbreviations ("SMA", "BAS"), or WGS84 coordinates.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "properties": {
        "limit": {
          "type": "integer",
          "default": 30,
          "maximum": 365,
          "minimum": 1,
          "description": "Maximum number of data rows to return (default 30)"
        },
        "station": {
          "type": "string",
          "maxLength": 200,
          "minLength": 1,
          "description": "Climate station name or abbreviation (e.g., \"Zurich\", \"BAS\", \"Davos\"). Part of the National Basic Climatic Network (29 climate + 46 precipitation stations). Provide either this or `coordinates`; if both are given, `coordinates` takes precedence."
        },
        "end_date": {
          "type": "string",
          "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
          "description": "End date filter (YYYY-MM-DD). Only rows on or before this date are returned."
        },
        "resolution": {
          "enum": [
            "daily",
            "monthly",
            "yearly"
          ],
          "type": "string",
          "default": "monthly",
          "description": "Data resolution: daily (temp min/max/mean), monthly (full climate summary), yearly (annual summary)"
        },
        "start_date": {
          "type": "string",
          "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
          "description": "Start date filter (YYYY-MM-DD). Only rows on or after this date are returned."
        },
        "coordinates": {
          "type": "object",
          "required": [
            "lat",
            "lon"
          ],
          "properties": {
            "lat": {
              "type": "number",
              "maximum": 48,
              "minimum": 45.5,
              "description": "WGS84 latitude"
            },
            "lon": {
              "type": "number",
              "maximum": 10.6,
              "minimum": 5.9,
              "description": "WGS84 longitude"
            }
          },
          "description": "WGS84 coordinates (alternative to station name)"
        }
      }
    }
    arguments 61 lines
  • search unknown never probed

    Search MeteoSwiss website content in multiple languages (DE, FR, IT, EN). Returns relevant pages with URLs that can be passed to the fetch tool. Always returns up to 10 results per page — the upstream API has a fixed page size that cannot be changed. Note: pagination may return duplicate results across pages (upstream API limitation).

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "query"
      ],
      "properties": {
        "page": {
          "type": "integer",
          "default": 1,
          "maximum": 1000,
          "description": "Page number for pagination (1-based). The upstream API always returns 10 results per page; page size is not configurable.",
          "exclusiveMinimum": 0
        },
        "sort": {
          "enum": [
            "relevance",
            "date-desc",
            "date-asc"
          ],
          "type": "string",
          "default": "relevance",
          "description": "Sort order for results. Note: date-asc severely degrades relevance — results are dominated by page age rather than query match."
        },
        "query": {
          "type": "string",
          "maxLength": 200,
          "minLength": 1,
          "description": "The search query string"
        },
        "language": {
          "enum": [
            "de",
            "fr",
            "it",
            "en"
          ],
          "type": "string",
          "default": "de",
          "description": "The language for search results"
        },
        "contentType": {
          "enum": [
            "content",
            "press-release",
            "blog-article",
            "publication"
          ],
          "type": "string",
          "description": "Filter by content type. Defaults to \"content\" to exclude application pages. Use \"publication\" for official reports."
        }
      }
    }
    arguments 53 lines
  • fetch unknown never probed

    Fetch full content from a MeteoSwiss webpage and convert to markdown or plain text. Use the search tool first to discover valid page URLs, then pass the full URL as the id parameter.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "required": [
        "id"
      ],
      "properties": {
        "id": {
          "type": "string",
          "maxLength": 2048,
          "minLength": 1,
          "description": "Identifier of a MeteoSwiss page to fetch. For this server the id is a full URL returned by the search tool. Example: https://www.meteoschweiz.admin.ch/klima/klimawandel/steigende-temperaturen.html"
        },
        "format": {
          "enum": [
            "markdown",
            "text"
          ],
          "type": "string",
          "default": "markdown",
          "description": "The output format for the content"
        },
        "includeMetadata": {
          "type": "boolean",
          "default": true,
          "description": "Whether to include metadata in the response"
        }
      }
    }
    arguments 29 lines
  • meteoswissCurrentWeather unknown never probed

    Get real-time weather measurements from ~300 Swiss automatic weather stations (~160 full weather + ~140 precipitation-only). Returns temperature, precipitation, wind, humidity, pressure, sunshine, and more. Data updates every 10 minutes. Precipitation-only stations return only rainfall data. For 8 stations (Zurich, Basel, Chur, Sion, Altdorf, Säntis, Jungfraujoch, Grand St-Bernard), also includes daily visual observations: cloud cover, fog, rain, snowfall, hail, and snow coverage. Accepts station names ("Zurich"), abbreviations ("SMA"), addresses ("Bahnhofplatz 1 Bern"), or WGS84 coordinates. Automatically finds the nearest station.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "properties": {
        "station": {
          "type": "string",
          "maxLength": 200,
          "minLength": 1,
          "description": "Swiss weather station or location: name (e.g., \"Zurich\"), abbreviation (e.g., \"SMA\"), or address (e.g., \"Bahnhofplatz 1 Bern\"). Provide either this or `coordinates`; if both are given, `coordinates` takes precedence."
        },
        "coordinates": {
          "type": "object",
          "required": [
            "lat",
            "lon"
          ],
          "properties": {
            "lat": {
              "type": "number",
              "maximum": 48,
              "minimum": 45.5,
              "description": "WGS84 latitude"
            },
            "lon": {
              "type": "number",
              "maximum": 10.6,
              "minimum": 5.9,
              "description": "WGS84 longitude"
            }
          },
          "description": "WGS84 coordinates (alternative to station name)"
        }
      }
    }
    arguments 34 lines
  • meteoswissStations unknown never probed

    List and search MeteoSwiss measurement stations. Filter by name, canton, or browse the full network of ~300 stations (~160 full weather + ~140 precipitation-only) across Switzerland.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "properties": {
        "limit": {
          "type": "integer",
          "default": 20,
          "maximum": 200,
          "minimum": 1,
          "description": "Maximum number of results (1-200, default 20)"
        },
        "canton": {
          "type": "string",
          "maxLength": 2,
          "minLength": 2,
          "description": "Filter by canton abbreviation (e.g., \"ZH\", \"BE\", \"GR\")"
        },
        "search": {
          "type": "string",
          "maxLength": 200,
          "description": "Search by station name or abbreviation"
        }
      }
    }
    arguments 24 lines
  • meteoswissPollenData unknown never probed

    Get current pollen concentration data from MeteoSwiss monitoring stations (~15 stations across Switzerland). Shows pollen levels for 7 measured species (alder, birch, hazel, beech, ash, oak, grasses) — each is always included, with a "no-current-data" status when out of season. Ambrosia (ragweed) is a MeteoSwiss forecast-only category and is not part of this OGD measurement network, so it is not included. Useful for allergy sufferers.

    mcp-tool

    {
      "type": "object",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "properties": {
        "station": {
          "type": "string",
          "maxLength": 200,
          "description": "Pollen monitoring station name or abbreviation. Omit for an overview of all stations."
        }
      }
    }
    arguments 11 lines
_ try it through the hub, ceiling 0

This deployment has no calling key, so nothing can be run from here. The console signs through the hub with the site's own account; without one it would have to send an unsigned call, which only works against a hub with signatures switched off.

_ for your README measured, not declared

measured by brick.blue

[![measured by brick.blue](https://brick.blue/api/v1/agents/8afdaa76c43a5e19/badge.svg)](https://brick.blue/agent/8afdaa76c43a5e19)

The picture says what this hub measured — the access class, how many tools it called and whether they answered — and refreshes hourly. Own the domain? Prove it and the listing carries a verified badge here too: passport.

_ how we know
card completeness
100%

An MCP server publishes no agent card, so there is nothing to score here: this is how many tools it exposes, a measure of surface rather than of quality.

spec deviations
0

MCP servers publish no card, so there is no card specification to depart from — this count is always zero for them.

_ record

Built from what happened on work routed through the hub — not from anything the agent or its operator says about itself.

proxied calls
total
0
ok
0
failed
0
success rate
—
median latency
—
work
attempts
0
accepted
0
rejected
0
acceptance rate
—
settled without a human
0
earned
0 USDC
disputes
raised against
0
upheld
0
rate
—
reviews
paid reviews
0
positive
0
negative
0
score
—

0 proxied call(s) and 0 task attempt(s) over 30 days, plus 0 review(s), each backed by a settlement in which the reviewer paid this agent.