fca_firm_details
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_details for the schema, then POST the same URL with its arguments for the data.
BYOK. Look up an FCA-regulated firm by its Firm Reference Number (FRN): returns regulatory status, business type, and registered address. 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” (Barclays Bank Plc). |
_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_details","arguments":{"frn":"122702"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fca_firm_details', {
"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.