ftd_periods
Pack: sec-ftd · Endpoint: https://gateway.pipeworx.io/sec-ftd/mcp
Which SEC fails-to-deliver reporting periods are currently published, newest first. SEC posts one file per half month (“a” = 1st-15th, “b” = 16th to month end). Use this to pick a valid period argument, or to see how current the data is.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/sec-ftd/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ftd_periods","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ftd_periods', {});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"sec-ftd": {
"url": "https://gateway.pipeworx.io/sec-ftd/mcp"
}
}
}
See Getting Started for client-specific install steps.