sec_8k_by_item
Pack: sec-events · Endpoint: https://gateway.pipeworx.io/sec-events/mcp
Find every 8-K filing in the last N days that declared a specific SEC Item code. Use for cross-market scans like “show me every restatement (Item 4.02) this month” or “every cybersecurity incident (Item 1.05) this quarter”. Common items: 1.01 (material agreement), 1.05 (cyber incident), 2.01 (M&A close), 2.02 (earnings), 4.02 (restatement), 5.01 (change of control), 5.02 (officer departure), 7.01 (Reg FD).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
item | string | yes | SEC Item code like “4.02” or “5.02”. Exact match. |
days | number | no | Look-back window in days. Default 7, max 60. |
limit | number | no | Max filings. Default 50, max 200. |
Example call
Arguments
{
"item": "4.02",
"days": 30
}
curl
curl -X POST https://gateway.pipeworx.io/sec-events/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"sec_8k_by_item","arguments":{"item":"4.02","days":30}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sec_8k_by_item', {
"item": "4.02",
"days": 30
});
More examples
{
"item": "1.05"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"sec-events": {
"url": "https://gateway.pipeworx.io/sec-events/mcp"
}
}
}
See Getting Started for client-specific install steps.