Wraps the OpenWeatherMap API so you can pull current weather conditions, forecasts, and related meteorological data directly into your MCP client. Part of the Pipeworx gateway ecosystem, which means you can either connect to this server standalone or access it alongside 737+ other data sources through their unified gateway. The source doesn't list specific tools, but you can query it using their ask_pipeworx interface by asking questions in plain English rather than calling named functions. Useful when you're building agents that need real-time weather context for planning, recommendations, or location-aware responses. Runs over streamable HTTP, so no local installation required.
OpenWeather MCP — wraps the OpenWeatherMap API (openweathermap.org)
Part of Pipeworx — an MCP gateway connecting AI agents to 737+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"openweather": {
"url": "https://gateway.pipeworx.io/openweather/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 737+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Openweather data" })
The gateway picks the right tool and fills the arguments automatically.
MIT