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
| Name | Type | Required | Description |
|---|---|---|---|
proceeding | string | yes | Exact docket/proceeding number, e.g. 11-42. |
limit | number | no | |
offset | number | no |
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.