
Connects Claude to Open-Meteo's free weather API without requiring authentication. Part of the Pipeworx gateway ecosystem, which aggregates 250+ data sources into a single MCP interface. You can wire it up as a standalone server or access it through the full Pipeworx gateway. Includes an ask_pipeworx tool that lets you query weather data in plain English instead of calling specific functions. Good fit if you're building agents that need current conditions or multi-day forecasts and want to avoid managing API keys or rate limits.
Public tool metadata for what this MCP can expose to an agent.
get_current_weatherGet current weather information for a specified city. It extracts the current hour's temperature and weather code, maps the weather code to a human-readable description, and returns a formatted summary.1 paramsGet current weather information for a specified city. It extracts the current hour's temperature and weather code, maps the weather code to a human-readable description, and returns a formatted summary.
citystringget_weather_byDateTimeRangeGet weather information for a specified city between start and end dates.3 paramsGet weather information for a specified city between start and end dates.
citystringend_datestringstart_datestringget_weather_detailsGet detailed weather information for a specified city as structured JSON data. This tool provides raw weather data for programmatic analysis and processing.2 paramsGet detailed weather information for a specified city as structured JSON data. This tool provides raw weather data for programmatic analysis and processing.
citystringinclude_forecastbooleanget_current_datetimeGet current time in specified timezone.1 paramsGet current time in specified timezone.
timezone_namestringget_timezone_infoGet information about a specific timezone including current time and UTC offset.1 paramsGet information about a specific timezone including current time and UTC offset.
timezone_namestringconvert_timeConvert time from one timezone to another.3 paramsConvert time from one timezone to another.
datetime_strstringfrom_timezonestringto_timezonestringget_air_qualityGet air quality information for a specified city including PM2.5, PM10, ozone, nitrogen dioxide, carbon monoxide, and other pollutants. Provides health advisories based on current air quality levels.2 paramsGet air quality information for a specified city including PM2.5, PM10, ozone, nitrogen dioxide, carbon monoxide, and other pollutants. Provides health advisories based on current air quality levels.
citystringvariablesarrayget_air_quality_detailsGet detailed air quality information for a specified city as structured JSON data. This tool provides raw air quality data for programmatic analysis and processing.2 paramsGet detailed air quality information for a specified city as structured JSON data. This tool provides raw air quality data for programmatic analysis and processing.
citystringvariablesarrayCurrent weather and 7–10 day forecast for any location. Backed by Open-Meteo (https://open-meteo.com), a free aggregator of national meteorological agency data (NOAA in the US, DWD in Germany, etc.). Returns temperature, humidity, wind, precipitation, conditions. Free, no auth, no API key.
Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.
Weather is one of those things agents need to know about constantly — for travel planning, agricultural questions, energy demand context, event planning, real estate ("is this market in a flood zone with active flooding?"). Open-Meteo is the right backend: free, accurate, global coverage, no key gymnastics.
Common flows:
get_weather({location: "Tokyo"}) → temp, humidity, wind, conditions.get_forecast({location: "Denver"}) → daily highs/lows, precipitation chance.get_weather({latitude: 39.74, longitude: -104.99}) for places that don't geocode well by name.None. Open-Meteo is free and unauthenticated. Generous fair-use limits (~10,000 requests/day per IP). Pipeworx caches per-location for short windows so repeated calls don't burn your daily quota.
The location parameter accepts:
"Tokyo", "London", "Denver")"Paris, France" to disambiguate from Paris, TX)"94070" for US, "SW1A 1AA" for UK)latitude + longitude argumentFor ambiguous names, the tool returns a disambiguation hint. For weird locations or precision-sensitive queries (offshore, remote), pass coordinates directly.
| Data | Refresh |
|---|---|
| Current conditions | ~10 minutes |
| Hourly forecast (next 24h) | Every 1–3 hours |
| Daily forecast (1–10 days) | Every 6 hours |
Pipeworx caches with a 10-minute TTL so repeated calls within that window are cheap.
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"weather": {
"url": "https://gateway.pipeworx.io/weather/mcp"
}
}
}
tools/list at https://gateway.pipeworx.io/weather/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Both URLs reach the same gateway and the same 1476+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Weather data" })
The gateway picks the right tool and fills the arguments automatically.
MIT