edgar_insider_transactions

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

AUTHORITATIVE insider trading activity (SEC Form 3/4/5) for a US public company — who bought or sold, how many shares, at what price, and what they hold now. Pass a ticker (“TSLA”) or CIK. Returns each recent Form 4 filing parsed into structured transactions: reporting owner + role (director/officer/10% holder), transaction code (P=open-market purchase, S=sale, A=grant/award, M=option exercise, G=gift, F=tax-withholding), shares, price per share, acquired/disposed, and shares owned after. Use for “insider buying at $TICKER”, “did executives sell recently”, “latest Form 4 activity”. Open-market purchases (code P) are the strongest conviction signal; awards (code A) are routine comp. For the raw filing list use edgar_company_filings with form_type:“4”.

Parameters

NameTypeRequiredDescription
ticker_or_cikstringyesTicker symbol (e.g., “TSLA”) or CIK number (e.g., “1318605”)
limitnumbernoMax Form 4/3/5 filings to parse (1-25, default 10)
include_derivativesbooleannoAlso include derivative (options/RSU) transactions. Default false (non-derivative common-stock only).

Example call

Arguments

{
  "ticker_or_cik": "TSLA",
  "limit": 10
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('edgar_insider_transactions', {
  "ticker_or_cik": "TSLA",
  "limit": 10
});

More examples

{
  "ticker_or_cik": "1318605",
  "include_derivatives": true
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 10, 2026