Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Provides live Greek weather data from EMY, including forecasts, alerts, marine bulletins, warnings, and climate records. Supports location-based queries by name, ID, or coordinates without requiring an API key.

README.md

emy-mcp

An MCP server for Greek weather data from EMY — the Hellenic National Meteorological Service (Εθνική Μετεωρολογική Υπηρεσία).

It wraps EMY's public (api.emy.gr) endpoints as MCP tools. No API key is required, and nothing is hardcoded — locations and data are always fetched live from EMY.

Tools

| Tool | What it returns | |------|-----------------| | list_locations | The live directory of ~1035 forecast locations (id, Greek/English name, prefecture, coordinates). Optional name/prefecture filter. | | get_forecast | Today + up to 3 days for one location, resolved by name, id, or coordinates (nearest point). Temp max/min (°C), wind, precipitation probability, sky condition. | | get_alerts | Structured CAP alerts (event, severity, urgency, onset/expiry, area). | | get_marine | Marine bulletin for Greek seas (METAREA 3): forecast + warnings text. | | get_warnings | National emergency weather bulletins (text, Greek only — EMY publishes no English variant). | | get_climate_records | All-time Greek climate extremes (temperature, precipitation, wind). |

Resolving a location

This is the tricky part. EMY stores names transliterated from Greek with a prefecture suffix, e.g. KORINTHOS (M. KORINTHIAS). Three independent problems:

  1. Exonyms vs transliteration — "Corinth" ≠ "Korinthos", "Corfu" ≠ "Kerkyra".
  2. Prefecture suffix on every name — (m. Korinthias).
  3. Greek script + accentsΚόρινθος vs KORINTHOS.

How they're handled:

  • Greek or Latin nameget_forecast(location=...) or list_locations(query=...).

Names are accent-folded, suffix-stripped, and Greek is transliterated to Latin using EMY's own scheme, so Κόρινθος, korinthos and KORINTHOS all match. Fuzzy ranking handles typos and returns alternatives.

  • English exonyms / anything ambiguous → resolve the place to coordinates

and call get_forecast(latitude=..., longitude=...). This returns the nearest forecast point regardless of spelling or language (e.g. Corinth's coordinates → Korinthos, 5 km away). An LLM client typically knows the coordinates already.

Live data, caching & resilience

Everything is fetched live. Per endpoint:

  1. Fresh window — cached payload is served without refetch for 30 minutes

(EMY's forecasts update ~twice daily).

  1. After the window, a refetch is attempted.
  2. If EMY is unreachable, the last-known-good copy is served for up to

24 hours, flagged stale with its age.

  1. After 24 hours with no successful fetch, the call fails with a clear error.

Every tool response includes a source block with fetched_at, age_minutes and stale.

TLS note

api.emy.gr serves a valid .emy.gr certificate but omits the intermediate CA from the handshake, so standard clients fail with "unable to get local issuer certificate". The client fetches the intermediate (RapidSSL TLS RSA CA G1) from the certificate's own AIA URL on first use and caches it under ~/.cache/emy-mcp/. Because a fetched cert is installed as a trusted anchor*, it is pinned by SHA-256 fingerprint — a fetched or cached cert is only trusted if its fingerprint matches the known-good value, which makes the fetch safe against tampering and self-heals a corrupt cache. Certificate verification is not disabled; if EMY ever rotates this CA the pin must be updated.

Data caveats

  • Sky condition comes from a small icon set (6 values): Sunny, Hot, Partly

cloudy, Scattered showers, Cloudy with rain, Thunderstorms — so it's coarse.

  • Wind speed units are reported by EMY as a bare number; they appear to be

m/s and are labelled as such, but EMY does not document this.

  • There is no live "current observations" feed in EMY's public API — only

forecasts, alerts, marine and climate. This server reflects that.

Install & run

pip install -e .          # or: pip install httpx certifi "mcp>=1.2"

# stdio (Claude Desktop, Claude Code, local assistants)
python -m emy_mcp

# streamable-HTTP (hostable)
python -m emy_mcp --http --host 0.0.0.0 --port 8000

Claude Desktop / Claude Code config (stdio)

{
  "mcpServers": {
    "emy-weather": {
      "command": "python",
      "args": ["-m", "emy_mcp"]
    }
  }
}

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Maps & Location servers.