form_d_latest_offering_states
Pack: sec-form-d · Endpoint: https://gateway.pipeworx.io/sec-form-d/mcp
Return only the latest filing state from each amendment-aware Form D chain for an issuer. This is a normalized regulatory snapshot, not proof that the amount sold closed or that separate chains are economically distinct rounds.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
cik | string | yes | |
limit | number | no |
Example call
Arguments
{
"cik": "0002036057",
"limit": 20
}
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_latest_offering_states","arguments":{"cik":"0002036057","limit":20}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('form_d_latest_offering_states', {
"cik": "0002036057",
"limit": 20
});
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.