get_registrant_documents
Pack: fara · Endpoint: https://gateway.pipeworx.io/fara/mcp
List FARA filings (PDF documents) for a registrant by registration_number (from search_registrants) — registration statements, supplemental statements, informational materials, exhibits, etc. Each row links the document to the specific foreign principal/country it concerns and gives a direct PDF URL. Optionally filter CLIENT-SIDE by document_type or country substring. Results are capped. Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
registration_number | number | yes | FARA registration number of the registrant (from search_registrants). |
document_type | string | no | Optional case-insensitive substring filter on document type, e.g. “supplemental”, “exhibit”, “informational”. |
country | string | no | Optional case-insensitive substring filter on the associated foreign-principal country. |
limit | number | no | Max documents to return (default 50, hard cap ${MAX_RESULTS}). |
Example call
Arguments
{
"registration_number": 5645
}
curl
curl -X POST https://gateway.pipeworx.io/fara/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_registrant_documents","arguments":{"registration_number":5645}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_registrant_documents', {
"registration_number": 5645
});
More examples
{
"registration_number": 5645,
"document_type": "supplemental",
"country": "uae",
"limit": 20
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"fara": {
"url": "https://gateway.pipeworx.io/fara/mcp"
}
}
}
See Getting Started for client-specific install steps.