Ferc Eqr
liveEnergyFERC Electric Quarterly Reports (EQR) — wholesale power sales: who sells to whom, under what contract, at what price and volume.
Tools
eqr_seller_lookupFind a FERC Electric Quarterly Report filer (seller/power marketer/utility) by name or FERC company id (e.g. "C000740"). Returns their per-quarter filing records — company name(s) as filed and whether
No parameters required.
Try it
eqr_contracts_searchSearch FERC EQR wholesale power contracts by seller, counterparty and/or product. Returns contract-level records: seller, customer, product (e.g. ENERGY, CAPACITY), quantity, rate, rate units, deliver
No parameters required.
Try it
eqr_counterparty_sellersWho sells wholesale power TO a given counterparty — the reverse of eqr_contracts_search. Aggregates FERC EQR contracts by seller for a counterparty name match, returning each seller's contract count,
No parameters required.
Try it
eqr_coverageWhat FERC EQR data is currently available and how fresh it is: row counts for the filer-identity, index-publisher and contracts tables, the quarter range covered, and when it was last refreshed. Use b
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/ferc-eqr/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/ferc-eqr/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"eqr_seller_lookup","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("eqr_seller_lookup", {});// Or ask in plain English:
const answer = await px.ask("ferc electric quarterly reports (eqr) — wholesale power sales: who sells to whom, under what contract, at what price and volume");