ferc_search

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

Full-text search across all FERC (Federal Energy Regulatory Commission) eLibrary filings and orders — not limited to one docket. Optionally bound to a filed-date window with since/until. Use for “FERC filings about X”, “orders mentioning Y between date A and date B”, or general keyword search across the public docket record when you do not already have a docket number (use ferc_docket if you do). Example: ferc_search({ query: “interconnection agreement”, since: “2026-06-01”, until: “2026-08-30”, full_text: true })

Parameters

NameTypeRequiredDescription
querystringnoSearch text; omit or pass ”*” to match everything (combine with since/until to just browse a date window)
sincestringnoEarliest filed date, YYYY-MM-DD
untilstringnoLatest filed date, YYYY-MM-DD
full_textbooleannoSearch inside full document text, not just metadata/description (default false — faster, description-only)
pagenumbernoResults page, starting at 1 (default 1)
limitnumbernoResults per page, 1-50 (default 10)

Example call

Arguments

{
  "query": "interconnection agreement",
  "since": "2026-06-01",
  "until": "2026-08-30",
  "full_text": true,
  "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_search","arguments":{"query":"interconnection agreement","since":"2026-06-01","until":"2026-08-30","full_text":true,"limit":3}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('ferc_search', {
  "query": "interconnection agreement",
  "since": "2026-06-01",
  "until": "2026-08-30",
  "full_text": true,
  "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.

Regenerated from source · build August 31, 2026