brokercheck_search_individual

Pack: brokercheck · Endpoint: https://gateway.pipeworx.io/brokercheck/mcp

Search individual stockbrokers and investment-adviser representatives by name via FINRA BrokerCheck — the regulator-published registry investors use for due diligence and investor-protection background checks. Returns matching individuals with CRD number, name, registration scope (active/inactive), a disclosure flag (has_disclosures — whether the person has any reported disciplinary/regulatory/customer-dispute event), and current employing firm(s). Use brokercheck_individual_detail with a returned CRD to see the actual disclosure events. Per-name lookup only — not for bulk enumeration.

Parameters

NameTypeRequiredDescription
querystringyesIndividual name to search (e.g. “John Smith”).
limitnumbernoMax individuals to return (1-50, default 10).

Example call

Arguments

{
  "query": "John Smith"
}

curl

curl -X POST https://gateway.pipeworx.io/brokercheck/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"brokercheck_search_individual","arguments":{"query":"John Smith"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('brokercheck_search_individual', {
  "query": "John Smith"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "brokercheck": {
      "url": "https://gateway.pipeworx.io/brokercheck/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 13, 2026