form_d_search_issuers
Pack: sec-form-d · Endpoint: https://gateway.pipeworx.io/sec-form-d/mcp
Search live SEC Form D filings by issuer, executive, fund, or other filing text and return normalized offering notices. Useful for private-company financing diligence and VC market scans. Results are notices, not independently verified closed rounds.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Issuer, person, fund, or filing text to search. |
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 | Results to hydrate (1-10, default 5). |
Example call
Arguments
{
"query": "Edera",
"since": "2024-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_search_issuers","arguments":{"query":"Edera","since":"2024-01-01","limit":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('form_d_search_issuers', {
"query": "Edera",
"since": "2024-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.