Ferc Eqr

liveEnergy

FERC Electric Quarterly Reports (EQR) — wholesale power sales: who sells to whom, under what contract, at what price and volume.

4tools
0msauth
free tier50 calls/day

Tools

eqr_seller_lookup

Find 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_counterparty_sellers

Who 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_coverage

What 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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/ferc-eqr/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
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.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("eqr_seller_lookup", {});
ask_pipeworx
// 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");