fca_firm_representatives
Pack: fca-register · Endpoint: https://gateway.pipeworx.io/fca-register/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/fca_firm_representatives for the schema, then POST the same URL with its arguments for the data.
BYOK. List a firm’s appointed representatives (principal/AR relationships) by Firm Reference Number (FRN). Returns an empty list for a firm with no appointed representatives — that is a real answer, not a failure. Requires your own free FCA Register API credentials via _apiKey as ”
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
frn | string | yes | Firm Reference Number, e.g. “122702”. |
_apiKey | string | yes |
Example call
Arguments
{
"frn": "122702"
}
curl
curl -X POST https://gateway.pipeworx.io/fca-register/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fca_firm_representatives","arguments":{"frn":"122702"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fca_firm_representatives', {
"frn": "122702"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"fca-register": {
"url": "https://gateway.pipeworx.io/fca-register/mcp"
}
}
}
See Getting Started for client-specific install steps.