spp_load_forecast
Pack: spp · Endpoint: https://gateway.pipeworx.io/spp/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/spp_load_forecast for the schema, then POST the same URL with its arguments for the data.
SPP load, wind and solar forecast vs actual at 5-minute resolution: short-term and mid-term load forecast (STLF/MTLF), wind forecast (STWF/MTWF), solar forecast (STSF/MTSF) and the actual load, wind and solar delivered. Use for “is SPP load beating forecast”, “SPP wind forecast error today”, “when does SPP peak”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | number | no | Latest N intervals that have actuals (default 12, max 2000). |
include_future | boolean | no | true = also return the forward forecast intervals that have no actuals yet. Default false. |
Example call
Arguments
{
"limit": 3
}
curl
curl -X POST https://gateway.pipeworx.io/spp/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"spp_load_forecast","arguments":{"limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('spp_load_forecast', {
"limit": 3
});
More examples
{
"limit": 2,
"include_future": true
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"spp": {
"url": "https://gateway.pipeworx.io/spp/mcp"
}
}
}
See Getting Started for client-specific install steps.