Intrinio
live FinanceMarketsOptions chains + greeks, unusual options activity, and Zacks analyst estimates & price targets. BYO key.
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.
curl -X POST https://gateway.pipeworx.io/intrinio/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' 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.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("intrinio_options_chain", {}); // Or ask in plain English:
const answer = await px.ask("options chains + greeks, unusual options activity, and zacks analyst estimates & price targets");