intrinio_unusual_options

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

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 flow. Example: intrinio_unusual_options({ symbol: “AAPL”, source: “delayed”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
symbolstringyesUnderlying ticker, e.g. “AAPL”
sourcestringno”realtime” or “delayed” (15-min delayed). Default “delayed”.
page_sizeintegernoMax trades to return (default 100)
_apiKeystringyesIntrinio API key (intrinio.com)

Example call

Arguments

{
  "symbol": "AAPL",
  "_apiKey": "your-intrinio-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/intrinio/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"intrinio_unusual_options","arguments":{"symbol":"AAPL","_apiKey":"your-intrinio-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('intrinio_unusual_options', {
  "symbol": "AAPL",
  "_apiKey": "your-intrinio-api-key"
});

More examples

{
  "symbol": "TSLA",
  "source": "realtime",
  "page_size": 50,
  "_apiKey": "your-intrinio-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "intrinio": {
      "url": "https://gateway.pipeworx.io/intrinio/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 19, 2026