Wraps WeatherAPI.com to give your MCP client access to weather data through a streamable HTTP gateway. Part of the Pipeworx platform, which aggregates 744+ data sources behind a single MCP interface. You can either connect directly to this server for weather-specific functionality or plug into the full Pipeworx gateway to get weather alongside everything else. Includes an ask_pipeworx tool that lets you query in plain English instead of calling specific endpoints. Useful when you need weather data in your agent workflows without managing API keys or parsing responses yourself. The source doesn't list specific tools, but it's a straightforward API wrapper hosted at gateway.pipeworx.io.
WeatherAPI.com MCP — wraps WeatherAPI.com (api.weatherapi.com)
Part of Pipeworx — an MCP gateway connecting AI agents to 744+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"weatherapi": {
"url": "https://gateway.pipeworx.io/weatherapi/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 744+ 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 Weatherapi data" })
The gateway picks the right tool and fills the arguments automatically.
MIT