insider_trades

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

SEC Form 4 insider transaction filings for a US-listed company: filing date, the officer/director/10%-owner who filed, and a link to the filing on EDGAR. Answers who at a company has been buying or selling its stock recently. Ticker or company name is resolved to a CIK, so results are that issuer’s filings.

Parameters

NameTypeRequiredDescription
tickerstringyesStock ticker (“AAPL”, “NVDA”), company name (“NVIDIA Corp”), or CIK
daysnumbernoLook back period in days (default: 365)
limitnumbernoMax filings to return (default: 20, max 200)

Example call

Arguments

{
  "ticker": "NVDA",
  "days": 30
}

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":"NVDA","days":30}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "ticker": "AAPL",
  "days": 365,
  "limit": 50
}

Response shape

Always returns: ticker, total_form4_filings, period, filings

FieldTypeDescription
tickerstringStock ticker in uppercase
total_form4_filingsnumberNumber of Form 4 filings RETURNED in filings — always equals filings.length
periodstringLook back period description
filingsarray
matched_form4_filingsnumberNumber of Form 4 filings matching upstream for this company and window, which may exceed the number returned
cikstringSEC CIK the ticker resolved to (unpadded)
company_namestringCanonical SEC registrant name
truncatedbooleanTrue when more filings matched upstream than were returned; raise limit to see them
Full JSON Schema
{
  "type": "object",
  "properties": {
    "ticker": {
      "type": "string",
      "description": "Stock ticker in uppercase"
    },
    "total_form4_filings": {
      "type": "number",
      "description": "Number of Form 4 filings RETURNED in `filings` — always equals filings.length"
    },
    "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"
        ]
      }
    },
    "matched_form4_filings": {
      "type": "number",
      "description": "Number of Form 4 filings matching upstream for this company and window, which may exceed the number returned"
    },
    "cik": {
      "type": "string",
      "description": "SEC CIK the ticker resolved to (unpadded)"
    },
    "company_name": {
      "type": "string",
      "description": "Canonical SEC registrant name"
    },
    "truncated": {
      "type": "boolean",
      "description": "True when more filings matched upstream than were returned; raise `limit` to see them"
    }
  },
  "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 September 10, 2026