Wraps Bloomberg's OpenFIGI API for financial instrument symbology lookups. You get three operations: map a batch of instrument identifiers to FIGIs, free text search across instruments, and filtered search by ID type and value. Useful when you need to normalize security identifiers across different systems or resolve ticker symbols, ISINs, CUSIPs, and other codes into standardized FIGI identifiers. Part of the Pipeworx gateway, so you can either connect to this standalone server or access it through their unified endpoint alongside 600+ other data sources. Supports plain English queries through ask_pipeworx if you want the gateway to pick tools automatically instead of calling map, search, or filter directly.
OpenFIGI MCP — financial-instrument symbology.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
map | Map a batch of instrument-id queries → FIGIs. |
search | Text search across instruments. |
filter | Filter search by idType + value (subset of /search). |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"openfigi": {
"url": "https://gateway.pipeworx.io/openfigi/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Openfigi data" })
The gateway picks the right tool and fills the arguments automatically.
MIT