form_d_related_person_network
Pack: sec-form-d · Endpoint: https://gateway.pipeworx.io/sec-form-d/mcp
Summarize filer-reported related persons across one issuer’s recent Form D history, with filing and chain counts. Related persons are executives, directors, promoters, or similar roles—not disclosed investors.
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_related_person_network","arguments":{"cik":"0002036057","limit":20}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('form_d_related_person_network', {
"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.