A comprehensive MCP server providing access to Open-Meteo weather APIs for Large Language Models
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"open-meteo": {
"args": [
"-y",
"-p",
"open-meteo-mcp-server",
"open-meteo-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A comprehensive Model Context Protocol (MCP) server that provides access to Open-Meteo weather APIs for use with Large Language Models.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'open-meteo-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked open-meteo-mcp-server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
An autonomous agent that conducts deep research on any data using any LLM providers
MCP Security Weekly
Get CVE alerts and security updates for Open Meteo Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A comprehensive Model Context Protocol (MCP) server that provides access to Open-Meteo weather APIs for use with Large Language Models.
This MCP server provides complete access to Open-Meteo APIs, including:
weather_forecast) - 7-day forecasts with hourly and daily resolutionweather_archive) - Historical ERA5 data from 1940 to presentair_quality) - PM2.5, PM10, ozone, nitrogen dioxide, pollen, European/US AQI indices, UV index and other pollutantsmarine_weather) - Wave height, wave period, wave direction and sea surface temperatureelevation) - Digital elevation model data for given coordinatesgeocoding) - Search locations worldwide by name or postal code, get coordinates and detailed location informationdwd_icon_forecast) - German weather service high-resolution model for Europegfs_forecast) - US weather service global model with high-resolution North America datameteofrance_forecast) - French weather service AROME and ARPEGE modelsecmwf_forecast) - European Centre for Medium-Range Weather Forecastsjma_forecast) - Japan Meteorological Agency high-resolution model for Asiametno_forecast) - Norwegian weather service for Nordic countriesgem_forecast) - Canadian weather service modelflood_forecast) - River discharge and flood forecasts from GloFAS (Global Flood Awareness System)seasonal_forecast) - Long-range forecasts up to 9 months aheadclimate_projection) - CMIP6 climate change projections for different warming scenariosensemble_forecast) - Multiple model runs showing forecast uncertaintyNo installation required! The server will run directly via npx.
npm install -g open-meteo-mcp-server
# Clone the repository
git clone https://github.com/cmer81/open-meteo-mcp.git
cd open-meteo-mcp
# Install dependencies
npm install
# Build the project
npm run build
Add the following configuration to your Claude Desktop config file:
{
"mcpServers": {
"open-meteo": {
"command": "npx",
"args": ["-y", "-p", "open-meteo-mcp-server", "open-meteo-mcp-server"]
}
}
}
{
"mcpServers": {
"open-meteo": {
"command": "npx",
"args": ["-y", "-p", "open-meteo-mcp-server", "open-meteo-mcp-server"],
"env": {
"OPEN_METEO_API_URL": "https://api.open-meteo.com",
"OPEN_METEO_AIR_QUALITY_API_URL": "https://air-quality-api.open-meteo.com",
"OPEN_METEO_MARINE_API_URL": "https://marine-api.open-meteo.com",
"OPEN_METEO_ARCHIVE_API_URL": "https://archive-api.open-meteo.com",
"OPEN_METEO_SEASONAL_API_URL": "https://seasonal-api.open-meteo.com",
"OPEN_METEO_ENSEMBLE_API_URL": "https://ensemble-api.open-meteo.com",
"OPEN_METEO_GEOCODING_API_URL": "https://geocoding-ap
... [View full README on GitHub](https://github.com/cmer81/open-meteo-mcp#readme)