ferc_class_types

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

Browse FERC eLibrary’s document class/type/library vocabulary — what “category” and “class_types” values from ferc_docket/ferc_search mean (e.g. “Order/Opinion” / “Delegated Order”, “Submittal” / “Affidavits/Sworn Statement”). Optionally filter by a search word. Use when a caller needs to know what document classification terms exist before filtering FERC results. Example: ferc_class_types({ search: “order” })

Parameters

NameTypeRequiredDescription
searchstringnoOptional word to filter class/type/category names, e.g. “order”, “brief”, “affidavit”

Example call

Arguments

{
  "search": "order"
}

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_class_types","arguments":{"search":"order"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('ferc_class_types', {
  "search": "order"
});

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