form_d_issuer_history
Pack: sec-form-d · Endpoint: https://gateway.pipeworx.io/sec-form-d/mcp
List one private issuer’s Form D filing and amendment history from SEC submissions data, with each notice hydrated from official XML. Do not sum amendments: later notices may restate the same offering rather than represent new capital.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
cik | string | yes | Issuer CIK, with or without leading zeros. |
limit | number | no | Filings to hydrate (1-20, default 10). |
Example call
Arguments
{
"cik": "2036057",
"limit": 10
}
curl
curl -X POST https://gateway.pipeworx.io/sec-form-d/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"form_d_issuer_history","arguments":{"cik":"2036057","limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('form_d_issuer_history', {
"cik": "2036057",
"limit": 10
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"sec-form-d": {
"url": "https://gateway.pipeworx.io/sec-form-d/mcp"
}
}
}
See Getting Started for client-specific install steps.