miso_wind_solar
Pack: miso · Endpoint: https://gateway.pipeworx.io/miso/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/miso_wind_solar for the schema, then POST the same URL with its arguments for the data.
MISO wind and solar generation for today — hourly forecast vs actual output in MW for both, from the same feed MISO publishes to its operators. Hours that have not happened yet carry a forecast and a null actual (never a fake 0). Use for “how accurate was the MISO wind forecast today”, “MISO solar output this afternoon”, renewable-curtailment and forecast-error questions.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/miso/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"miso_wind_solar","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('miso_wind_solar', {});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"miso": {
"url": "https://gateway.pipeworx.io/miso/mcp"
}
}
}
See Getting Started for client-specific install steps.