Fcc Ecfs

live Reference

MCP server for Fcc Ecfs

4 tools
0ms auth
free tier 50 calls/day

Tools

ecfs_search_filings

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, no

No parameters required.

Try it
ecfs_docket_filings

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.

No parameters required.

Try it
ecfs_filing_detail

Retrieve one FCC ECFS filing by submission ID with all public proceedings, filers, authors, law firms, status, and official document/attachment URLs.

No parameters required.

Try it
ecfs_search_proceedings

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

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/fcc-ecfs/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/fcc-ecfs/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"ecfs_search_filings","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("ecfs_search_filings", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("mcp server for fcc ecfs");