sec_8k_detail
Pack: sec-events · Endpoint: https://gateway.pipeworx.io/sec-events/mcp
Look up a single 8-K filing by accession number. Returns full triage row including all Item codes, descriptions, severity, and (if enriched) the LLM-extracted summary. Use after sec_8k_recent / _today / _by_item to get the full structured record for a specific filing.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
accession_number | string | yes | SEC accession number like “0001234567-26-001234”. |
Example call
Arguments
{
"accession_number": "0001213900-26-060600"
}
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_detail","arguments":{"accession_number":"0001213900-26-060600"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sec_8k_detail', {
"accession_number": "0001213900-26-060600"
});
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.