ecfs_search_proceedings

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

Search FCC ECFS proceedings/dockets by exact number or public API query and return descriptions, bureau, dates, and docket links.

Parameters

NameTypeRequiredDescription
proceedingstringnoExact proceeding number.
querystringnoOptional proceeding search text.
limitnumberno
offsetnumberno

Example call

Arguments

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

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_search_proceedings","arguments":{"proceeding":"11-42","limit":10}}}'

TypeScript (@pipeworx/sdk)

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

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

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