form_d_related_person_search
Pack: sec-form-d · Endpoint: https://gateway.pipeworx.io/sec-form-d/mcp
Find Form D notices mentioning an executive, promoter, director, or other related person, then return only filings whose parsed related-person list matches the name. Useful for mapping repeat founders and fund managers; relationships are filer-supplied.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
person | string | yes | Person name or distinctive substring. |
since | string | no | Start filing date YYYY-MM-DD. Default 5 years ago. |
until | string | no | End filing date YYYY-MM-DD. Default today. |
limit | number | no | Matching filings to return (1-10, default 5). |
Example call
Arguments
{
"person": "Marc Andreessen",
"since": "2022-01-01",
"limit": 5
}
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_search","arguments":{"person":"Marc Andreessen","since":"2022-01-01","limit":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('form_d_related_person_search', {
"person": "Marc Andreessen",
"since": "2022-01-01",
"limit": 5
});
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.