forecast
Pack: weatherapi · Endpoint: https://gateway.pipeworx.io/weatherapi/mcp
Get a multi-day weather forecast for a location: daily high/low temperature, condition, chance of rain, total precipitation, and sunrise/sunset times. Up to 10 days. Example: forecast({ q: “Tokyo”, days: 5 }).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
q | string | yes | |
days | number | no | Number of forecast days (default 3, max 10). |
Example call
curl -X POST https://gateway.pipeworx.io/weatherapi/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"forecast","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"weatherapi": {
"url": "https://gateway.pipeworx.io/weatherapi/mcp"
}
}
}
See Getting Started for client-specific install steps.