Wraps the Open-Meteo Climate API and makes it accessible through MCP without requiring authentication. Part of the Pipeworx gateway platform that bundles 673+ data sources behind a unified interface. You can connect directly to this single climate endpoint or use the full Pipeworx gateway to access the entire catalog. The ask_pipeworx tool lets you query in natural language instead of calling specific endpoints, which is handy when you're prototyping climate data integrations or building agents that need weather and climate information. Ships over streamable HTTP, so it works with Claude Desktop and similar MCP clients out of the box.
Climate MCP — wraps Open-Meteo Climate API (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"climate": {
"url": "https://gateway.pipeworx.io/climate/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ 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 Climate data" })
The gateway picks the right tool and fills the arguments automatically.
MIT