short_interest

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

FINRA consolidated SHORT INTEREST for one symbol — the bi-monthly settlement-date data: total open short position, days-to-cover, average daily volume, and change vs the prior settlement. This is the ”% short / days-to-cover” metric investors cite — DISTINCT from short_volume_daily (daily short-sale VOLUME). Returns the latest settlement plus recent history.

Parameters

NameTypeRequiredDescription
symbolstringyesTicker (case-insensitive), e.g. “TSLA”
limitnumbernoHow many recent settlements to return (1–24, default 6)

Example call

Arguments

{
  "symbol": "TSLA"
}

curl

curl -X POST https://gateway.pipeworx.io/finra/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"short_interest","arguments":{"symbol":"TSLA"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('short_interest', {
  "symbol": "TSLA"
});

More examples

{
  "symbol": "AMC",
  "limit": 12
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026