insider_activity_summary

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

Combined insider activity overview for a company — recent insider trades (Form 4), material events (8-K), and activist filings (13D/G) in one call. Use for quick due diligence on any public company.

Parameters

NameTypeRequiredDescription
tickerstringyesStock ticker (e.g., “AAPL”, “TSLA”, “NVDA”)

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_activity_summary","arguments":{"ticker":"AAPL"}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "ticker": "NVDA"
}

Response shape

Always returns: ticker, summary, recent_insider_trades, recent_8k_events, activist_filings

FieldTypeDescription
tickerstringStock ticker in uppercase
summaryobject
recent_insider_tradesarray
recent_8k_eventsarray
activist_filingsarray
Full JSON Schema
{
  "type": "object",
  "properties": {
    "ticker": {
      "type": "string",
      "description": "Stock ticker in uppercase"
    },
    "summary": {
      "type": "object",
      "properties": {
        "insider_trades_90d": {
          "type": "number",
          "description": "Count of Form 4 filings in last 90 days"
        },
        "material_events_90d": {
          "type": "number",
          "description": "Count of 8-K filings in last 90 days"
        },
        "activist_filings_1y": {
          "type": "number",
          "description": "Count of 13D/G filings in last 365 days"
        }
      },
      "required": [
        "insider_trades_90d",
        "material_events_90d",
        "activist_filings_1y"
      ]
    },
    "recent_insider_trades": {
      "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"
          },
          "accession": {
            "type": "string",
            "description": "SEC accession number"
          },
          "filing_url": {
            "type": "string",
            "description": "URL to SEC filing document"
          }
        }
      }
    },
    "recent_8k_events": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "date": {
            "type": "string",
            "description": "Filing date"
          },
          "company": {
            "type": "string",
            "description": "Company name"
          },
          "items": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "code": {
                  "type": "string",
                  "description": "8-K item code"
                },
                "description": {
                  "type": "string",
                  "description": "Event type description"
                }
              }
            }
          },
          "accession": {
            "type": "string",
            "description": "SEC accession number"
          },
          "filing_url": {
            "type": "string",
            "description": "URL to SEC filing document"
          }
        }
      }
    },
    "activist_filings": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "date": {
            "type": "string",
            "description": "Filing date"
          },
          "filer": {
            "type": "string",
            "description": "Investor or entity name"
          },
          "form": {
            "type": "string",
            "description": "Form type"
          },
          "accession": {
            "type": "string",
            "description": "SEC accession number"
          },
          "filing_url": {
            "type": "string",
            "description": "URL to SEC filing document"
          }
        }
      }
    }
  },
  "required": [
    "ticker",
    "summary",
    "recent_insider_trades",
    "recent_8k_events",
    "activist_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