eqr_counterparty_sellers

Pack: ferc-eqr · Endpoint: https://gateway.pipeworx.io/ferc-eqr/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/eqr_counterparty_sellers for the schema, then POST the same URL with its arguments for the data.

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, the quarter range they appear in, and the distinct products sold. Answers “who sells power to PacifiCorp” / “which generators have contracts with ” directly, which a single-table filter cannot (it needs a group-by across all matching contracts). Sourced from FERC EQR via PUDL (CC-BY-4.0), Phase 1 (contract terms only).

Parameters

NameTypeRequiredDescription
counterpartystringyesCounterparty/customer company name, substring match, e.g. “PacifiCorp”.
quarter_fromstringnoEarliest quarter to include, format “2020q1”.
quarter_tostringnoLatest quarter to include, format “2026q2”.
limitnumbernoMax sellers to return (default 25, max 100).

Example call

Arguments

{
  "counterparty": "PacifiCorp"
}

curl

curl -X POST https://gateway.pipeworx.io/ferc-eqr/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"eqr_counterparty_sellers","arguments":{"counterparty":"PacifiCorp"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('eqr_counterparty_sellers', {
  "counterparty": "PacifiCorp"
});

Connect

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

{
  "mcpServers": {
    "ferc-eqr": {
      "url": "https://gateway.pipeworx.io/ferc-eqr/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 23, 2026