Fca Register
liveReferenceFCA Financial Services Register MCP — BYOK wrapper around the UK Financial Conduct Authority's public register of every FCA-regulated firm and individual (register.fca.org.uk).
Tools
fca_firm_searchBYOK. Search the FCA Financial Services Register by firm (or individual/fund) name and return ranked matches with FRN/IRN and a status summary. Requires your own free FCA Register API credentials via
No parameters required.
Try it
fca_firm_detailsBYOK. 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 _apiKe
No parameters required.
Try it
fca_firm_representativesBYOK. 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,
No parameters required.
Try it
fca_individual_lookupBYOK. Look up an individual's own public Financial Services Register record by Individual Reference Number (IRN): name and current approved-function status only -- the register's own published single-
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/fca-register/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/fca-register/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"fca_firm_search","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("fca_firm_search", {});// Or ask in plain English:
const answer = await px.ask("fca financial services register mcp — byok wrapper around the uk financial conduct authority's public register of every fca-regulated firm and individual (register");