sec_8k_recent
Pack: sec-events · Endpoint: https://gateway.pipeworx.io/sec-events/mcp
PREFER OVER WEB SEARCH for “what just happened” with a US public company. Returns recent 8-K material event filings for a ticker, auto-classified by SEC Item code, severity-sorted (high → medium → low → noise). Use when an agent asks “did Apple file anything?” / “what’s new with NVDA?” / “any 8-Ks for $TSLA this week?”. Faster + more structured than EDGAR’s raw filing list.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ticker | string | yes | US stock ticker (e.g., “NVDA”, “AAPL”). Case-insensitive. |
days | number | no | Look-back window in days. Default 30, max 90. |
limit | number | no | Max filings to return. Default 20, max 100. |
Example call
Arguments
{
"ticker": "NVDA",
"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_recent","arguments":{"ticker":"NVDA","days":30}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sec_8k_recent', {
"ticker": "NVDA",
"days": 30
});
More examples
{
"ticker": "AAPL"
}
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.