GLEIF
liveFinanceGovernmentGlobal Legal Entity Identifier Foundation — canonical 20-character LEI lookup and corporate hierarchy for ~2.5M financial-market entities. No auth.
Tools
search_leiLegal entities matching a name search, with their LEI codes, from the Global LEI Foundation.
No parameters required.
Try it
get_leiOne legal entity's registration record by its LEI code, from the Global LEI Foundation.
No parameters required.
Try it
get_lei_relationshipsA legal entity's parent and subsidiary relationships, by LEI, from the Global LEI Foundation.
No parameters required.
Try it
isin_to_leiThe LEI code(s) mapped to a security's ISIN, from the Global LEI Foundation.
No parameters required.
Try it
lei_to_isinsThe security ISINs mapped to a legal entity's LEI, from the Global LEI Foundation.
No parameters required.
Try it
bic_to_leiThe LEI code mapped to a bank's BIC/SWIFT code, from the Global LEI Foundation.
No parameters required.
Try it
lei_hierarchy_treeA legal entity's full parent/subsidiary hierarchy tree, by LEI, from the Global LEI Foundation.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/gleif/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/gleif/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_lei","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search_lei", {});// Or ask in plain English:
const answer = await px.ask("global legal entity identifier foundation — canonical 20-character lei lookup and corporate hierarchy for ~2");