Intrinio

live FinanceMarkets

Options chains + greeks, unusual options activity, and Zacks analyst estimates & price targets. BYO key.

4 tools
0ms auth
free tier 50 calls/day

Tools

intrinio_options_chain

Options chain with greeks and implied volatility for a symbol at a given expiration — returns strike, type, bid/ask/last, volume, open interest, delta, and IV per contract. Example: intrinio_options_c

No parameters required.

Try it
intrinio_unusual_options

Unusual options activity for a symbol — large/block/sweep trades flagged by Intrinio with bullish/bearish sentiment, total premium value, and the contract traded. Intrinio's signature feed for options

No parameters required.

Try it
intrinio_analyst_estimates

Zacks analyst EPS estimates for a company — consensus mean/high/low EPS estimate, number of analysts, and fiscal period. Example: intrinio_analyst_estimates({ symbol: "AAPL", _apiKey: "your-key" })

No parameters required.

Try it
intrinio_target_price

Zacks target-price consensus for a company — mean/high/low/median analyst price targets and the number of estimates. Example: intrinio_target_price({ symbol: "AAPL", _apiKey: "your-key" })

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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/intrinio/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/intrinio/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"intrinio_options_chain","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("intrinio_options_chain", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("options chains + greeks, unusual options activity, and zacks analyst estimates & price targets");