ecfs_docket_filings

Pack: fcc-ecfs · Endpoint: https://gateway.pipeworx.io/fcc-ecfs/mcp

List FCC ECFS filings in an exact proceeding/docket, newest first, including documents and parties. A filing reflects the submitter’s position and is not an FCC decision.

Parameters

NameTypeRequiredDescription
proceedingstringyesExact docket/proceeding number, e.g. 11-42.
limitnumberno
offsetnumberno

Example call

Arguments

{
  "proceeding": "11-42",
  "limit": 25
}

curl

curl -X POST https://gateway.pipeworx.io/fcc-ecfs/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ecfs_docket_filings","arguments":{"proceeding":"11-42","limit":25}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('ecfs_docket_filings', {
  "proceeding": "11-42",
  "limit": 25
});

Connect

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

{
  "mcpServers": {
    "fcc-ecfs": {
      "url": "https://gateway.pipeworx.io/fcc-ecfs/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 27, 2026