SEC Filings

live Finance

US public company filings, financial facts, and company search from SEC EDGAR

3 tools
0ms auth
free forever

Tools

search_companies required: query

Search SEC-registered companies by name or ticker

Parameters
Name Type Description
query req string Company name or ticker symbol
get_company_filings required: cik

Get recent SEC filings for a company

Parameters
Name Type Description
cik req string SEC CIK number
form_type opt string Filter by form type (e.g., 10-K, 10-Q, 8-K)
get_company_facts required: cik

Get XBRL financial facts (revenue, assets, etc.) for a company

Parameters
Name Type Description
cik req string SEC CIK number

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/sec/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/sec/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_companies","arguments":{"query": "example"}}}'