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
| Name | Type | Required | Description |
|---|---|---|---|
ticker_or_cik | string | yes | Ticker symbol (e.g., “TSLA”) or CIK number (e.g., “1318605”) |
limit | number | no | Max Form 4/3/5 filings to parse (1-25, default 10) |
include_derivatives | boolean | no | Also include derivative (options/RSU) transactions. Default false (non-derivative common-stock only). |
Example call
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":{}}}'
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.