insider_8k
Pack: insider-trading · Endpoint: https://gateway.pipeworx.io/insider-trading/mcp
Get material event filings (8-K) for a company. 8-K filings report significant events: earnings, acquisitions, officer changes, material agreements, and more. Returns event types with descriptions.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ticker | string | yes | Stock ticker (e.g., “AAPL”) |
days | number | no | Look back period in days (default: 180) |
limit | number | no | Max filings to return (default: 15) |
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_8k","arguments":{"ticker":"AAPL"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('insider_8k', {
"ticker": "AAPL"
});
More examples
{
"ticker": "NVDA",
"days": 90,
"limit": 10
}
Response shape
Always returns: ticker, total_8k_filings, period, filings
| Field | Type | Description |
|---|---|---|
ticker | string | Stock ticker in uppercase |
total_8k_filings | number | Total number of 8-K filings found |
period | string | Look back period description |
filings | array |
Full JSON Schema
{
"type": "object",
"properties": {
"ticker": {
"type": "string",
"description": "Stock ticker in uppercase"
},
"total_8k_filings": {
"type": "number",
"description": "Total number of 8-K filings found"
},
"period": {
"type": "string",
"description": "Look back period description"
},
"filings": {
"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 (e.g., 2.02, 5.02)"
},
"description": {
"type": "string",
"description": "Human-readable description of the event type"
}
},
"required": [
"code",
"description"
]
}
},
"accession": {
"type": "string",
"description": "SEC accession number"
},
"filing_url": {
"type": "string",
"description": "URL to SEC filing document"
}
},
"required": [
"date",
"company",
"items",
"accession",
"filing_url"
]
}
}
},
"required": [
"ticker",
"total_8k_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.