SkillAgentSearch skills...

meteoswiss-llm-tools

Meteoswiss Open Data Tools for LLMs - MCP server and Agent Skill

Install / Use

claude mcp add eins78 -- npx -y github:eins78/meteoswiss-llm-tools

If the server publishes to npm under a different name, use that package instead — check the repo README.

About this skill
🔌

MCP Server

Model Context Protocol server

Quality Score

78/100

Supported Platforms

Claude Code
Claude Desktop

Tags

Our assessment of meteoswiss-llm-tools

meteoswiss-llm-tools scores 78/100 on our quality scale, 590th of 762 AI & Machine Learning skills we index.

Its MCP Server is 7.9 KB long, well organised into 13 sections with 5 code examples: a thorough specification that gives an agent plenty to work with.

It has 3 GitHub stars, so there is little community track record yet; judge it on its content.

Substance
29/30
Structure
20/20
Description
12/15
Adoption
3/20
Freshness
15/15

Maintenance, license and trust

  • The repository was last updated 15 days ago, so meteoswiss-llm-tools is actively maintained.
  • Our last check on 2026-09-26 found the source still online.
  • It is released under the CC0-1.0 license, a permissive license that allows use, modification and commercial use with attribution.
  • Its trust signals score 87/100, with 2 cautions from licensing, adoption, age or documentation. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.

Safety scan

No issues found

Our scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. An AI review of the same text found nothing harmful.

AI review by kimi-k2.7-code on 2026-09-27. Automated pattern scan on 2026-09-27. It catches known dangerous patterns, not every risk — read a skill before letting an agent act on it.

meteoswiss-llm-tools compared with similar skills

All 4 of these similar skills score higher than meteoswiss-llm-tools; compare them before choosing.

SkillScoreStarsUpdatedFormat
meteoswiss-llm-tools (this skill)by eins7878315d agoMCP Server
claude-memby thedotmack10094.8k1d agoCLAUDE.md
Agent-Reachby Panniantong10085.7k12d agoCLAUDE.md
Understand-Anythingby Egonex-AI10084.3k15d agoCLAUDE.md
headroomby headroomlabs-ai10073.9ktodayCLAUDE.md

Frequently asked questions

How do I install meteoswiss-llm-tools?
Run claude mcp add eins78 -- npx -y github:eins78/meteoswiss-llm-tools. The install tabs above show the steps for each supported agent.
Which AI agents does meteoswiss-llm-tools work with?
It is written for Claude Code and Claude Desktop, as a MCP Server file. Other agents that read the same format can often use it too.
Is meteoswiss-llm-tools safe to use?
Our scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. An AI review of the same text found nothing harmful. It is CC0-1.0-licensed and scores 87/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
Is meteoswiss-llm-tools still maintained?
The repository was last updated 15 days ago, so meteoswiss-llm-tools is actively maintained.

🌦️ MeteoSwiss LLM Tools

License: CC0-1.0 npm: meteoswiss-mcp Docker live next Cursor Directory

Swiss weather data for AI assistants — powered by MeteoSwiss Open Government Data (OGD), the same data behind the MeteoSwiss app and website. Free, no API key required.

meteoswiss-mcp.ars.is — try the hosted service instantly, no setup needed.

This repo is also a working answer to a design question: how should you give AI agents access to a public dataset? It implements the same MeteoSwiss data access twice — as an agent skill (markdown instructions plus bash scripts, no server) and as an MCP server (structured tools, fuzzy matching, caching, hosted). The two approaches are compared honestly in the skill vs. MCP case study.

A third piece, meteoswiss-forecast-evals, demonstrates eval-driven interface design: a promptfoo suite measuring how well 13 LLMs read the forecast JSON, which settled a real design decision — local-time timestamps beat UTC, with hour-level lookups scoring ~100% vs. ~0%.

What the tools provide:

  • Multi-day forecasts for ~6000 Swiss locations (postal codes, stations, place names)
  • Real-time measurements from ~300 stations (~160 full weather + ~140 precipitation-only), updated every 10 minutes
  • Station discovery by name, canton, or GPS coordinates
  • Pollen monitoring from ~15 stations across Switzerland
  • Climate series from the National Basic Climatic Network (NBCN), going back decades
  • MeteoSwiss website search and content retrieval

What this repo demonstrates

  • An agent skill — teach an agent to fetch open data directly with curl/awk/jq: ~630 lines of markdown and bash, zero infrastructure. → packages/meteoswiss-skills
  • An MCP server — the same data as structured, validated tools with fuzzy station matching, geocoding, TTL-tiered caching, a real test suite, Docker, and a hosted instance. → packages/meteoswiss-mcp
  • Eval-driven interface design — treat tool output as an interface for a language model, and measure its legibility before shipping. → packages/meteoswiss-forecast-evals

Read the comparison: Skill vs. MCP Server: Two Ways to Give AI Agents the Same Data.

Choose your approach

Both approaches answer the same weather questions. Which to install depends on your agent:

| | MCP Server | Agent Skill | |---|---|---| | What it is | Standalone server exposing 7 structured tools via MCP | Markdown instructions + 5 bash scripts the agent runs directly | | Works with | Claude Desktop, Claude.ai, Cursor, any MCP client | Claude Code, Cursor, any agent with shell access | | Coverage | Forecasts, current weather, stations, pollen, climate series, website search | Forecasts, current weather, stations, pollen | | Extras | Fuzzy matching, geocoding, caching, DE/FR/IT prompts, structured JSON | No server, no Node.js — just curl, awk, jq | | Size | ~6.6k lines TypeScript, tested in CI | ~630 lines markdown + bash | | Install | One-liner (hosted), npm, or Docker | Plugin marketplace, Skills CLI, or symlink |

Full comparison — parity matrix, engineering trade-offs, context cost, when to choose which: docs/skill-vs-mcp.md.

MCP server — quickstart

Use the hosted instance (no installation):

# Claude Code
claude mcp add meteoswiss https://meteoswiss-mcp.ars.is/mcp

For Cursor, install from the Cursor Directory or add manually via Settings → MCP.

Or self-host with Docker:

docker run -p 3000:3000 ghcr.io/eins78/meteoswiss-mcp:latest

See the meteoswiss-mcp README for Claude Desktop setup, environment variables, and full documentation.

Agent skill — quickstart

Install via the Claude Code plugin marketplace:

/plugin marketplace add eins78/meteoswiss-llm-tools
/plugin install meteoswiss-skills@meteoswiss-marketplace

Or with the Skills CLI:

pnpx skills add https://github.com/eins78/meteoswiss-llm-tools.git#packages/meteoswiss-skills --global --agent claude-code --all

See the meteoswiss-skills README for manual installation and details.

Available tools (MCP server)

| Tool | Description | |------|-------------| | meteoswissLocalForecast | Multi-day forecasts by postal code, station, or place name | | meteoswissCurrentWeather | Real-time measurements (temperature, wind, humidity, pressure) | | meteoswissStations | Search station network by name, canton, or coordinates | | meteoswissPollenData | Pollen concentration data from monitoring stations | | meteoswissClimateData | NBCN climate series — temperature, precipitation, sunshine, and climate indicators going back decades | | search | Search MeteoSwiss website content (DE, FR, IT, EN) | | fetch | Fetch full content from MeteoSwiss pages |

Example questions

Works with both approaches — just ask in any of Switzerland's four languages:

  • "What's the weather forecast for Zurich this week?"
  • "Wie wird das Wetter in Bern morgen?"
  • "Quelle est la météo à Genève?"
  • "Che tempo fa a Lugano?"

Packages

| Package | Version | Description | |---------|---------|-------------| | meteoswiss-mcp | npm | MCP server with structured tools, fuzzy matching, and geocoding | | meteoswiss-skills | 1.0.0 | Agent skill — direct HTTP access, no server needed | | meteoswiss-forecast-evals | — | LLM eval suite for the forecast JSON format (standalone, not a workspace member) |

Documentation

Development

git clone https://github.com/eins78/meteoswiss-llm-tools.git
cd meteoswiss-llm-tools
nvm use && pnpm install

See each package's README for package-specific commands. The repo uses changesets for versioning.

Manual, point-in-time test reports (e.g. live MCP tool test passes) live in docs/test-reports/.

Data source

All weather data comes from MeteoSwiss Open Government Data (OGD) — the official free data offering from Switzerland's Federal Office of Meteorology and Climatology. The same data powers the MeteoSwiss app and website.

License

CC0-1.0 — public domain

Related Skills

View on GitHub
GitHub Stars3
CategoryAI
Updated15d ago
Forks2

Languages

HTML

Trust signals

87/100

From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.

2 low