ecfs_filing_detail
Pack: fcc-ecfs · Endpoint: https://gateway.pipeworx.io/fcc-ecfs/mcp
Retrieve one FCC ECFS filing by submission ID with all public proceedings, filers, authors, law firms, status, and official document/attachment URLs.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
submission_id | string | yes |
Example call
Arguments
{
"submission_id": "26110045064"
}
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_filing_detail","arguments":{"submission_id":"26110045064"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ecfs_filing_detail', {
"submission_id": "26110045064"
});
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.