sec_8k_today
Pack: sec-events · Endpoint: https://gateway.pipeworx.io/sec-events/mcp
What 8-K material events were filed today (or in the most recent trading session), severity-ranked. Drops noise/procedural filings by default. Use for “what mattered in the market today?” / “any breaking corporate news?”. Defaults to high+medium severity only.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
severity | string | no | Comma-separated severities to include. Default “high,medium”. Allowed: high, medium, low, noise. |
limit | number | no | Max filings. Default 30, max 100. |
Example call
Arguments
{}
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_today","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sec_8k_today', {});
More examples
{
"severity": "high"
}
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.