Fca Register

liveReference

FCA 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).

4tools
0msauth
free tier50 calls/day

Tools

fca_firm_details

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 _apiKe

No parameters required.

Try it
fca_firm_representatives

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,

No parameters required.

Try it
fca_individual_lookup

BYOK. 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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/fca-register/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
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.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("fca_firm_search", {});
ask_pipeworx
// 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");