insider_13d

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

Get activist investor filings (Schedule 13D/G) for a company. 13D filings indicate 5%+ ownership with activist intent. 13G indicates passive 5%+ ownership. Use to detect activist campaigns or large stake accumulations.

Parameters

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

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "ticker": "TSLA",
  "days": 730,
  "limit": 5
}

Response shape

Always returns: ticker, total_13d_filings, period, description, filings

FieldTypeDescription
tickerstringStock ticker in uppercase
total_13d_filingsnumberTotal number of Schedule 13D/G filings found
periodstringLook back period description
descriptionstringExplanation of 13D vs 13G filing types
filingsarray
Full JSON Schema
{
  "type": "object",
  "properties": {
    "ticker": {
      "type": "string",
      "description": "Stock ticker in uppercase"
    },
    "total_13d_filings": {
      "type": "number",
      "description": "Total number of Schedule 13D/G filings found"
    },
    "period": {
      "type": "string",
      "description": "Look back period description"
    },
    "description": {
      "type": "string",
      "description": "Explanation of 13D vs 13G filing types"
    },
    "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 (SC 13D, SC 13D/A, SC 13G, or SC 13G/A)"
          },
          "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_13d_filings",
    "period",
    "description",
    "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