gridstatus_datasets

Pack: gridstatus · Endpoint: https://gateway.pipeworx.io/gridstatus/mcp

List/search US grid datasets (LMP prices, load, fuel mix across the 7 ISOs: CAISO, ERCOT, PJM, MISO, SPP, NYISO, ISONE). Use this to discover the exact dataset_id to pass to gridstatus_query. Example: gridstatus_datasets({ filter: “caiso lmp”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
filterstringnoOptional keyword(s) to narrow the list, matched against dataset id/name/description/source (all words must match). E.g. “caiso lmp”, “ercot load”, “pjm fuel mix”. Omit to list all.
_apiKeystringyesGridStatus API key (free tier at gridstatus.io)

Example call

Arguments

{
  "filter": "caiso lmp",
  "_apiKey": "your-gridstatus-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/gridstatus/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"gridstatus_datasets","arguments":{"filter":"caiso lmp","_apiKey":"your-gridstatus-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('gridstatus_datasets', {
  "filter": "caiso lmp",
  "_apiKey": "your-gridstatus-api-key"
});

More examples

{
  "_apiKey": "your-gridstatus-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "gridstatus": {
      "url": "https://gateway.pipeworx.io/gridstatus/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 22, 2026