Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From mcp-open-meteo
Provides access to Open-Meteo APIs for weather forecasts, current conditions, marine data, historical archives, ensemble/seasonal predictions, geocoding, and air quality. Runs locally via stdio; configurable via API URL env vars.
npx claudepluginhub henkisdabro/wookstar-claude-plugins --plugin mcp-open-meteoCopy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"open-meteo": {
"command": "npx",
"args": [
"open-meteo-mcp-server"
],
"env": {
"OPEN_METEO_API_URL": "https://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_ENSEMBLE_API_URL": "https://ensemble-api.open-meteo.com",
"OPEN_METEO_SEASONAL_API_URL": "https://seasonal-api.open-meteo.com",
"OPEN_METEO_GEOCODING_API_URL": "https://geocoding-api.open-meteo.com",
"OPEN_METEO_AIR_QUALITY_API_URL": "https://air-quality-api.open-meteo.com"
}
}
}
}Server configuration and connection parameters
npxCommand-line arguments passed to the server process
Environment variables set when the server starts
OPEN_METEO_API_URL=https://api.open-meteo.comOPEN_METEO_MARINE_API_URL=https://marine-api.open-meteo.comOPEN_METEO_ARCHIVE_API_URL=https://archive-api.open-meteo.comOPEN_METEO_ENSEMBLE_API_URL=https://ensemble-api.open-meteo.comOPEN_METEO_SEASONAL_API_URL=https://seasonal-api.open-meteo.comOPEN_METEO_GEOCODING_API_URL=https://geocoding-api.open-meteo.comOPEN_METEO_AIR_QUALITY_API_URL=https://air-quality-api.open-meteo.comShare bugs, ideas, or general feedback.