ftd_security
Pack: sec-ftd · Endpoint: https://gateway.pipeworx.io/sec-ftd/mcp
Fails-to-deliver history for one US-listed security from the SEC’s CNS fails-to-deliver file, by ticker symbol. Returns each settlement date with the number of shares that failed to deliver, the closing price, the security description and its CUSIP. A fail-to-deliver is a settlement failure — shares not delivered on time — and the SEC states it is NOT evidence of naked short selling; ordinary causes include processing delays, order-entry errors and illiquidity. Answers “what were the fails-to-deliver for GME”, “has this stock had settlement failures recently”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | yes | Ticker symbol as SEC writes it, e.g. “GME”, “TSLA”. |
periods | number | no | How many recent half-month files to search, 1-${MAX_PERIODS} (default 2, roughly the last month). SEC publishes one file per half month. |
Example call
Arguments
{
"symbol": "GME",
"periods": 2
}
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_security","arguments":{"symbol":"GME","periods":2}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ftd_security', {
"symbol": "GME",
"periods": 2
});
More examples
{
"symbol": "TSLA"
}
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.