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
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
counterparty | string | yes | Counterparty/customer company name, substring match, e.g. “PacifiCorp”. |
quarter_from | string | no | Earliest quarter to include, format “2020q1”. |
quarter_to | string | no | Latest quarter to include, format “2026q2”. |
limit | number | no | Max 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.