MeteoSwiss MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MeteoSwiss MCP Serverwhat's the current weather report for Northern Switzerland?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
π¦οΈ MeteoSwiss LLM Tools
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-skillsAn 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.
Related MCP server: MCP Travel Weather Server
Choose your approach
Both approaches answer the same weather questions. Which to install depends on your agent:
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 |
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/mcpFor 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:latestSee 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-marketplaceOr with the Skills CLI:
pnpx skills add https://github.com/eins78/meteoswiss-llm-tools.git#packages/meteoswiss-skills --global --agent claude-code --allSee the meteoswiss-skills README for manual installation and details.
Available tools (MCP server)
Tool | Description |
| Multi-day forecasts by postal code, station, or place name |
| Real-time measurements (temperature, wind, humidity, pressure) |
| Search station network by name, canton, or coordinates |
| Pollen concentration data from monitoring stations |
| NBCN climate series β temperature, precipitation, sunshine, and climate indicators going back decades |
| Search MeteoSwiss website content (DE, FR, IT, EN) |
| 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 |
MCP server with structured tools, fuzzy matching, and geocoding | ||
1.0.0 | Agent skill β direct HTTP access, no server needed | |
β | LLM eval suite for the forecast JSON format (standalone, not a workspace member) |
Documentation
Skill vs. MCP case study β the honest comparison of the two approaches
Eval results: forecast JSON comprehension β the local-time-vs-UTC sweep
Development
git clone https://github.com/eins78/meteoswiss-llm-tools.git
cd meteoswiss-llm-tools
nvm use && pnpm installSee 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
This server cannot be installed
Maintenance
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/eins78/meteoswiss-llm-tools'
If you have feedback or need assistance with the MCP directory API, please join our Discord server