SEC Contracts

live FinanceLegal

Material contracts filed with the SEC — credit agreements, indentures, merger and employment agreements — found by the clause language inside them, across every exhibit since 2001.

3 tools
0ms auth
free tier 50 calls/day

Tools

sec_contract_text

Read the text of ONE SEC exhibit document — a credit agreement, merger agreement, indenture, employment agreement or any other EX-10 / EX-4 / EX-2 attachment — as clean plaintext, paged. Pass the `doc

No parameters required.

Try it
sec_contracts_by_company

List ONE company's material contracts as filed with the SEC — every Exhibit 10 (credit agreements, employment and severance agreements, leases, license and supply agreements, equity plans), Exhibit 4

No parameters required.

Try it

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-contracts/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-contracts/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"sec_contracts_search","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("sec_contracts_search", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("material contracts filed with the sec — credit agreements, indentures, merger and employment agreements — found by the clause language inside them, across every exhibit since 2001");