meteo-swiss-mcp
Exposes Swiss weather forecast data as MCP tools, including rainfall, sunshine, temperature, wind, and more, with local caching.
README
MeteoSwiss MCP Server
A Model Context Protocol (MCP) server that exposes Swiss weather forecast data callable tools.
It fetches data from the official MeteoSwiss meteodata-lab, caches it locally, and serves predictions such as rainfall, sunshine, temperature, etc. The prediction data is from the ICON-CH2-EPS forecast system that produces data for up to 5 days ahead.
Additionally there is also a MCP client that can be run to test the server using the stdio transport.
Note:
This project is not an official MeteoSwiss product.
All forecast data are from the MeteoSwiss Open Data portal.
Source: MeteoSwiss
π¦ Installation
# Clone the repo
git clone https://github.com/cuolm/meteo-swiss-mcp.git
cd meteo-swiss-mcp
# Create a virtual environment
python -m venv .venv
source .venv/bin/activate # Windows: .\.venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
Note:
- Ollama is optional β only needed if you want to use the MCP client
meteo_swiss_mcp_client.py. - The server uses a cache (
cache/EarthKitCache) to avoid reβdownloading weather data. Clear it withrm -rf cache/EarthKitCacheif needed. - The server uses a cache (
cache/nominatim_geocode_cache.json) for lat/lon lookups. Clear it withrm -rf cache/nominatim_geocode_cache.jsonif needed.
βοΈ Server Configuration
Create a .env file in the root directory and specify an environment variable that tells Nominatim (the geocoding service) who is making the call.
echo 'NOMINATIM_USER_AGENT="YourWeatherMCPServer/1.0 (yourname@example.com)"' > .env
π Running the Server
# stdio (default)
python src/meteo_swiss_mcp_server.py
# streamable-http
python src/meteo_swiss_mcp_server.py --transport=streamable-http --host=localhost --port=8050
Optional flags: --help
π³ Running the Server with Docker
Run the MCP server in Docker with these steps:
- Create a
.envfile in the project root containing your Nominatim user agent environment variable (replace"YourWeatherMCPServer/1.0 (yourname@example.com)"):
echo 'NOMINATIM_USER_AGENT="YourWeatherMCPServer/1.0 (yourname@example.com)"' > .env
- Build the Docker image from the root folder:
docker build -t meteo_swiss_mcp_server .
- Run the container, passing the
.envfile and mapping port 8050:
docker run --env-file .env -p 8050:8050 meteo_swiss_mcp_server
- Access the server at:
http://localhost:8050/mcp/
This runs the MCP server isolated with all dependencies and environment variables preconfigured.
π₯οΈ Running the MCP Client using Stdio Transport
The MCP client src/meteo_swiss_mcp_client.py can be used to test the server over the stdio transport.
Make sure Ollama is installed on your system. You can download it here or install via Homebrew on macOS: brew install ollama
# Pull a local Ollama LLM model (e.g. qwen3:4b)
ollama pull qwen3:4b
# Run the MCP client (the client script will automatically start the server)
python src/meteo_swiss_mcp_client.py --model=qwen3:4b --server-script=src/meteo_swiss_mcp_server.py
π§ Available Tools
| Tool | Purpose | Example Call |
|---|---|---|
current_date_and_time() |
Current date and time (weekday day.month.year hour:minute:second) in Swiss local time | current_date_and_time() |
total_rainfall(location, lead_time_start_swiss, lead_time_end_swiss) |
Total rainfall (mm) for a period | total_rainfall("Zurich", 24, 48) |
sunshine_hours(location, lead_time_start_swiss, lead_time_end_swiss) |
Sunshine hours for a period | sunshine_hours("Zurich", 24, 48) |
temperature(location, lead_time_swiss) |
Max temperature (Β°C) at a specific lead time | temperature("Zurich", 36) |
wind_speed(location, lead_time_swiss) |
Wind speed (m/s) at a specific lead time | wind_speed("Zurich", 36) |
pressure_msl(location, lead_time_swiss) |
Seaβlevel pressure (Pa) at a specific lead time | pressure_msl("Zurich", 36) |
total_cloud_cover(location, lead_time_swiss) |
Cloud cover (%) at a specific lead time | total_cloud_cover("Zurich", 36) |
snow_depth(location, lead_time_swiss) |
Snow depth (m) at a specific lead time | snow_depth("Zurich", 36) |
precipitation_rate(location, lead_time_swiss) |
Precipitation rate (mm/s) at a specific lead time | precipitation_rate("Zurich", 36) |
| Lead Time |
- Lead time is the number of hours counted from Swiss local time 00:00, internally converted to UTC (the ICON-CH2-EPS forecast system uses UTC).
- Example: A lead time of 36 hours returns the forecast for 12:00 Swiss local time tomorrow.
- Minimum lead time: 2 hours; maximum lead time: 121 hours.
π Project Structure
meteo-swiss-mcp/
βββ src/
β βββ meteo_swiss_mcp_server.py # MCP server
β βββ meteo_swiss_predictions.py # Data fetching logic
β βββ meteo_swiss_mcp_client.py # MCP client (optional)
βββ requirements.txt
βββ .env
β
βββ cache/
βββ tests/
βββ docs/
βββ Dockerfile
β‘ Example Usage with LMStudio
Using the streamable-http transport layer
Configure the mcp.json file in LMStudio:
{
"mcpServers": {
"meteo_swiss_mcp_server": {
"url": "http://localhost:8050/mcp/"
}
}
}
Run the MCP server with the streamable-http transport layer:
# Make sure the virtual environment is activated
source .venv/bin/activate
python src/meteo_swiss_mcp_server.py --transport=streamable-http --host=localhost --port=8050
Using the stdio transport layer
Configure the mcp.json file in LMStudio. Replace <path-to-the-project> with your actual local path:
{
"mcpServers": {
"meteo_swiss_mcp_server": {
"command": "<path-to-the-project>/.venv/bin/python",
"args": [
"<path-to-the-project>/src/meteo_swiss_mcp_server.py"
]
}
}
}

π§ͺ Tests
Run all tests with:
cd tests
pytest
π Useful Resources
π License
This project is licensed under the Apache License 2.0.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.