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
| Name | Type | Required | Description |
|---|---|---|---|
ticker | string | yes | Stock 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
| Field | Type | Description |
|---|---|---|
ticker | string | Stock ticker in uppercase |
summary | object | |
recent_insider_trades | array | |
recent_8k_events | array | |
activist_filings | array |
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.