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
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Full-text query, company, filer, author, or topic. |
limit | number | no | Results (1-100, default 25). |
offset | number | no | Pagination 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.