esma_check_firm_authorisation

Pack: esma-firds · Endpoint: https://gateway.pipeworx.io/esma-firds/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/esma_check_firm_authorisation for the schema, then POST the same URL with its arguments for the data.

Look up a firm in ESMA’s Union Register of investment firms (the EU-wide MiFID II authorisation register) by entity name (matches if every word appears anywhere in the name, order-independent) or LEI (exact match). Returns each matching entity’s authorisation status (Active/Inactive), competent authority, home member state and entity type (investment firm, credit institution, etc.) — answers ‘is this entity authorised to provide investment services in the EU’. Distinct from FIRDS: this is the firm register, not the instrument register.

Parameters

NameTypeRequiredDescription
namestringnoEntity name; every word must appear in the name, e.g. “Deutsche Bank”.
leistringno20-character LEI, exact match. Used only if name is not given.
limitnumbernoMax records to return (default 20, max 100).

Example call

Arguments

{
  "name": "Deutsche Bank"
}

curl

curl -X POST https://gateway.pipeworx.io/esma-firds/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"esma_check_firm_authorisation","arguments":{"name":"Deutsche Bank"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('esma_check_firm_authorisation', {
  "name": "Deutsche Bank"
});

Connect

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

{
  "mcpServers": {
    "esma-firds": {
      "url": "https://gateway.pipeworx.io/esma-firds/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 23, 2026