ferc_docket
Pack: ferc-elibrary · Endpoint: https://gateway.pipeworx.io/ferc-elibrary/mcp
Get all filings, orders, and correspondence for a FERC (Federal Energy Regulatory Commission) docket number — e.g. rate cases, interconnection agreements, tariff filings, orders on rehearing. Returns accession numbers, filed/issued/posted dates, document category and class/type, and the docket family (a docket query also surfaces related sub-dockets, e.g. “ER11-4046” pulling in “ER11-3872-029”). Use for “what has FERC filed/ordered in docket X”, “history of docket Y”, or “latest filing in case Z”. Example: ferc_docket({ docket: “ER11-4046” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
docket | string | yes | FERC docket number, e.g. “ER11-4046” or “CP20-1” |
page | number | no | Results page, starting at 1 (default 1) |
limit | number | no | Results per page, 1-50 (default 10) |
Example call
Arguments
{
"docket": "ER11-4046",
"limit": 3
}
curl
curl -X POST https://gateway.pipeworx.io/ferc-elibrary/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ferc_docket","arguments":{"docket":"ER11-4046","limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ferc_docket', {
"docket": "ER11-4046",
"limit": 3
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ferc-elibrary": {
"url": "https://gateway.pipeworx.io/ferc-elibrary/mcp"
}
}
}
See Getting Started for client-specific install steps.