filter
Pack: openfigi · Endpoint: https://gateway.pipeworx.io/openfigi/mcp
Filter OpenFIGI instruments by a specific identifier type (e.g. idType=“TICKER”) and value, optionally narrowed by exchange code or currency; returns matching FIGIs, security descriptions, and market sector.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
idType | string | yes | |
value | string | yes | |
exchCode | string | no | |
currency | string | no |
Example call
Arguments
{
"idType": "TICKER",
"value": "MSFT",
"exchCode": "UN"
}
curl
curl -X POST https://gateway.pipeworx.io/openfigi/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"filter","arguments":{"idType":"TICKER","value":"MSFT","exchCode":"UN"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('filter', {
"idType": "TICKER",
"value": "MSFT",
"exchCode": "UN"
});
More examples
{
"idType": "ISIN",
"value": "IE00B4L5Y983",
"currency": "USD"
}
Response shape
| Field | Type | Description |
|---|---|---|
query | object | Filter parameters (idType, idValue, exchCode, currency) |
result | array | Array of matching instruments |
Full JSON Schema
{
"type": "object",
"properties": {
"query": {
"type": "object",
"description": "Filter parameters (idType, idValue, exchCode, currency)"
},
"result": {
"type": "array",
"description": "Array of matching instruments",
"items": {
"type": "object",
"description": "Instrument record matching the filter criteria"
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"openfigi": {
"url": "https://gateway.pipeworx.io/openfigi/mcp"
}
}
}
See Getting Started for client-specific install steps.