firds_search_by_issuer

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

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

Search ESMA’s FIRDS for every instrument reported for one issuer, by issuer LEI (exact match, preferred) or issuer/instrument name (matches if every word appears anywhere in the name, order-independent). Returns each matching (ISIN, venue) record with name, CFI code and issuer LEI, plus the total number of matching records FIRDS holds (which can run into the hundreds for a large issuer across many venues and instrument types — the result is capped at limit).

Parameters

NameTypeRequiredDescription
issuer_leistringno20-character issuer LEI, e.g. “529900D6BF99LW9R2E68” (SAP SE). Exact match.
issuer_namestringnoIssuer or instrument name; every word must appear in the name, e.g. “Deutsche Bank”. Used only if issuer_lei is not given.
limitnumbernoMax records to return (default 25, max 100).

Example call

Arguments

{
  "issuer_lei": "529900D6BF99LW9R2E68",
  "limit": 5
}

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":"firds_search_by_issuer","arguments":{"issuer_lei":"529900D6BF99LW9R2E68","limit":5}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('firds_search_by_issuer', {
  "issuer_lei": "529900D6BF99LW9R2E68",
  "limit": 5
});

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