list_foreign_principals

Pack: fara · Endpoint: https://gateway.pipeworx.io/fara/mcp

List the FOREIGN principals (foreign governments, parties, companies, individuals) that a given FARA registrant represents — i.e. who a US agent is working for. Addressed server-side by registration_number (get one from search_registrants). Optionally filter the returned set CLIENT-SIDE by country or principal-name substring. Set status=“terminated” for former relationships. Returns principal_name, country, registrant_name, registration_date and address. Keyless.

Parameters

NameTypeRequiredDescription
registration_numbernumberyesFARA registration number of the US agent/firm (from search_registrants).
countrystringnoOptional case-insensitive substring filter on the principal’s country, e.g. “italy”, “saudi”.
namestringnoOptional case-insensitive substring filter on the foreign-principal name.
statusstringnoActive or terminated representation. Default “active”.

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":"list_foreign_principals","arguments":{"registration_number":5645}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('list_foreign_principals', {
  "registration_number": 5645
});

More examples

{
  "registration_number": 5645,
  "country": "saudi",
  "status": "active"
}

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.

Regenerated from source · build September 9, 2026