FlashAlpha
live FinanceStocksFlashAlpha MCP — options exposure analytics: gamma exposure (GEX) by strike, key levels (gamma flip, call/put walls), IV rank, and Black-Scholes greeks. BYO FlashAlpha API key.
Tools
flashalpha_gex Get options gamma exposure (GEX) by strike for an underlying — net GEX, gamma flip, and per-strike call/put gamma.
No parameters required.
Try it
flashalpha_levels Get key options-derived levels for an underlying — gamma flip level, call wall, and put wall.
No parameters required.
Try it
flashalpha_iv Get an implied-volatility summary for a stock — IV rank and IV percentile (plus current/underlying IV where available).
No parameters required.
Try it
flashalpha_greeks Black-Scholes (BSM) option greeks calculator — pass spot, strike, days-to-expiry, volatility and option type to get delta, gamma, theta, vega (and higher-order greeks where returned).
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/flashalpha/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/flashalpha/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"flashalpha_gex","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("flashalpha_gex", {}); // Or ask in plain English:
const answer = await px.ask("flashalpha mcp — options exposure analytics: gamma exposure (gex) by strike, key levels (gamma flip, call/put walls), iv rank, and black-scholes greeks"); Related packs
Other Pipeworx packs in the same categories (Finance, Stocks):