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.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。