insider_trades

Pack: insider-trading · Endpoint: https://gateway.pipeworx.io/insider-trading/mcp

Get recent insider trading filings (Form 4) for a company. Shows who bought or sold shares, when, and links to SEC filings. Use to detect insider buying/selling patterns.

Parameters

NameTypeRequiredDescription
tickerstringyesStock ticker (e.g., “AAPL”, “TSLA”)
daysnumbernoLook back period in days (default: 365)
limitnumbernoMax filings to return (default: 20)

Example call

Arguments

{
  "ticker": "AAPL"
}

curl

curl -X POST https://gateway.pipeworx.io/insider-trading/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"insider_trades","arguments":{"ticker":"AAPL"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('insider_trades', {
  "ticker": "AAPL"
});

More examples

{
  "ticker": "TSLA",
  "days": 90,
  "limit": 10
}

Response shape

Always returns: ticker, total_form4_filings, period, filings

FieldTypeDescription
tickerstringStock ticker in uppercase
total_form4_filingsnumberTotal number of Form 4 filings found
periodstringLook back period description
filingsarray
Full JSON Schema
{
  "type": "object",
  "properties": {
    "ticker": {
      "type": "string",
      "description": "Stock ticker in uppercase"
    },
    "total_form4_filings": {
      "type": "number",
      "description": "Total number of Form 4 filings found"
    },
    "period": {
      "type": "string",
      "description": "Look back period description"
    },
    "filings": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "date": {
            "type": "string",
            "description": "Filing date"
          },
          "filer": {
            "type": "string",
            "description": "Company or insider name"
          },
          "form": {
            "type": "string",
            "description": "Form type (4)"
          },
          "accession": {
            "type": "string",
            "description": "SEC accession number"
          },
          "filing_url": {
            "type": "string",
            "description": "URL to SEC filing document"
          }
        },
        "required": [
          "date",
          "filer",
          "form",
          "accession",
          "filing_url"
        ]
      }
    }
  },
  "required": [
    "ticker",
    "total_form4_filings",
    "period",
    "filings"
  ]
}

Connect

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

{
  "mcpServers": {
    "insider-trading": {
      "url": "https://gateway.pipeworx.io/insider-trading/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026