ecfs_search_filings

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

Search FCC ECFS filings using the public API full-text index. Returns filer/author, proceeding, submission type, dates, and official document links. Search matches are filings in the public record, not FCC findings or endorsements.

Parameters

NameTypeRequiredDescription
querystringyesFull-text query, company, filer, author, or topic.
limitnumbernoResults (1-100, default 25).
offsetnumbernoPagination offset (default 0).

Example call

Arguments

{
  "query": "T-Mobile",
  "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_search_filings","arguments":{"query":"T-Mobile","limit":25}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('ecfs_search_filings', {
  "query": "T-Mobile",
  "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