@pipeworx/esma-firds
Connect: https://gateway.pipeworx.io/esma-firds/mcp · Install: one-click buttons
No MCP client? Skip the connection: POST https://gateway.pipeworx.io/v1/tools/search_packs {"query":"..."} to find a tool below, GET /v1/tools/<name> for its schema, POST the same URL with arguments for the data — see For AI agents.
Tools: 3
ESMA’s EU-wide financial instrument reference register (FIRDS) and its MiFID II investment-firm authorisation register (the Union Register) — resolve an ISIN to its issuer LEI, CFI code and every EU trading venue it lists on; search instruments by issuer; and check whether a firm is authorised to provide investment services in the EU. Keyless, live per-query against ESMA’s own public Solr endpoint.
Tools
firds_lookup(isin)— resolve one ISIN to full name, short name, CFI code, issuer LEI, notional currency, bond fields (maturity, nominal value, fixed rate) or derivative fields (underlying ISIN, expiry, option type) when applicable, and every EU trading venue (MIC) it trades on with each venue’s status and first/termination trading date.firds_search_by_issuer(issuer_lei?, issuer_name?, limit?)— every instrument FIRDS holds for one issuer, by LEI (exact) or name (all words must appear, order-independent).esma_check_firm_authorisation(name?, lei?, limit?)— look up a firm in ESMA’s Union Register of investment firms: authorisation status, competent authority, home member state, entity type.
Auth
Keyless.
Data sources
GET https://registers.esma.europa.eu/solr/esma_registers_firds/select— the FIRDS Solr core: one document per (ISIN, trading venue) pair. Backsfirds_lookupandfirds_search_by_issuer.GET https://registers.esma.europa.eu/solr/esma_registers_upreg/select— the Union Register (MiFID II firm authorisation) Solr core,entity_type:aedocuments. Backsesma_check_firm_authorisation.
Both cores are the same public, keyless Solr instance ESMA runs itself behind the FIRDS/register UI at registers.esma.europa.eu — confirmed live 2026-09-23. This pack calls it per request; it does not ingest ESMA’s bulk FIRDS full/delta XML files (see Quirks).
Quirks
- Proxy, not mirror, on purpose. ESMA also publishes FIRDS as downloadable full/delta XML files, and a naive build of this pack would ingest and index those locally. That would be redistribution and would need a reuse grant under Bruce’s fleet #1389 ruling. The Solr endpoint above serves the identical reference data per query, keyless, so this pack calls it live instead — no bulk file was ever downloaded or stored.
- One ISIN is many rows. FIRDS files a separate record per trading venue, so a single well-listed share (e.g. SAP SE,
DE0007164600) returns ~90 rows.firds_lookupalways addsAND latest_received_flag:1to the query to get the current state per venue rather than FIRDS’ full change-log history — omitting that flag silently mixes stale/superseded rows in with current ones. It then picks the record wheremic == rca_mic(the venue ESMA itself treats as the reference market) for the descriptive fields (name, CFI code, currency, LEI), falling back to the first non-terminated (statusnotTERM/CANC) row, and folds every row into thevenueslist. - Name fields are un-tokenized strings, not full-text.
gnr_full_name(FIRDS) andae_entityName(Union Register) each hold the whole name as one string value — a wildcard only matches from the start of that value, soDeutsche* AND Bank*matches nothing (no value starts with two different prefixes).firds_search_by_issuer’sissuer_nameandesma_check_firm_authorisation’snameinstead split the input on whitespace and AND together a*word*substring clause per word, which correctly requires every word to appear somewhere in the value regardless of order. Matching is case-insensitive (verified:sap*andSAP*return the same set). mrkt_trdng_trmination_date— FIRDS’ own field name is missing the “e” (not a typo introduced here); kept as-is since it’s the literal Solr field name.- The Union Register core name is
esma_registers_upreg(Union Register), not an obvious “mifid” or “entities” name — found by brute-forcing likely core names against/solr/<core>/select, since ESMA documents no core-name list. A sibling core,esma_registers_fitrs_equities(MiFIR transparency/liquidity data — ADT, LIS thresholds), exists on the same host and is a plausible future addition but is out of scope here.
Tools
- firds_lookup — Resolve one ISIN via ESMA’s FIRDS (Financial Instruments Reference Data System, EU-wide, all MiFID II instruments) to its full name, short name, CFI code, issuer LEI, notional currency, bond fields (m
- firds_search_by_issuer — 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-independen
- esma_check_firm_authorisation — 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
Tools
esma_check_firm_authorisation— 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 LEIfirds_lookup— Resolve one ISIN via ESMA's FIRDS (Financial Instruments Reference Data System, EU-wide, all MiFID II instruments) to its full name, short name, CFI code, issuer LEI, notional currency, bond fields (mfirds_search_by_issuer— 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-independen