search

Pack: openfigi · Endpoint: https://gateway.pipeworx.io/openfigi/mcp

Text search across instruments.

Parameters

NameTypeRequiredDescription
querystringyes
exchCodestringno
currencystringno
securityTypestringno
marketSecDesstringno

Example call

Arguments

{
  "query": "Apple Inc"
}

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":"search","arguments":{"query":"Apple Inc"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search', {
  "query": "Apple Inc"
});

More examples

{
  "query": "Treasury Bond",
  "exchCode": "US",
  "securityType": "Bond",
  "currency": "USD"
}

Response shape

FieldTypeDescription
querystringThe search query string
resultarrayArray of matching instruments
Full JSON Schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "The search query string"
    },
    "result": {
      "type": "array",
      "description": "Array of matching instruments",
      "items": {
        "type": "object",
        "description": "Instrument record with FIGI, name, and metadata"
      }
    }
  }
}

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.

Regenerated from source · build July 7, 2026