fca_individual_lookup

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_individual_lookup for the schema, then POST the same URL with its arguments for the data.

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-lookup fields, nothing more. This tool does not enumerate or list individuals; it looks up exactly one IRN you already have. Requires your own free FCA Register API credentials via _apiKey as ”:” (register free at https://register.fca.org.uk/Developer/s/registernewuser). Example: fca_individual_lookup({ irn: “MXC29012”, _apiKey: “[email protected]:your-key” })

Parameters

NameTypeRequiredDescription
irnstringyesIndividual Reference Number, e.g. “MXC29012”.
_apiKeystringyes

Example call

Arguments

{
  "irn": "MXC29012"
}

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_individual_lookup","arguments":{"irn":"MXC29012"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('fca_individual_lookup', {
  "irn": "MXC29012"
});

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.

Regenerated from source · build September 23, 2026