sec_contracts_by_company
Pack: sec-contracts · Endpoint: https://gateway.pipeworx.io/sec-contracts/mcp
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 (indentures, notes, warrants, registration rights) and Exhibit 2 (merger and acquisition agreements) attached to its 8-K, 10-K, 10-Q, S-1 and S-4 filings — newest first, from SEC EDGAR full-text search. Pass a ticker (“ADBE”), company name (“Adobe”) or CIK. Returns exhibit type, the filer’s own exhibit description (“EX-10.1 CREDIT AGREEMENT DATED…”), root form, filing date, document URL and accession, grouped by filing. Answers “what credit facility does $TICKER have on file”, “show me $COMPANY’s executive employment agreements”, “which indentures has $TICKER filed since 2023”. Read any row with sec_contract_text.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
company | string | yes | Ticker (“ADBE”), company name (“Adobe Inc”) or CIK (“796343”). Names are resolved against the SEC ticker list first; unlisted names fall back to EDGAR’s entity-name filter. |
exhibit_type | string | no | Exhibit family: EX-10 material contracts, EX-4 debt/warrant instruments, EX-2 M&A agreements, EX-99 other, any (default) = EX-10 + EX-4 + EX-2, all_exhibits = every EX-* document. |
form | string | no | Root form filter, e.g. “8-K” or “10-K,10-Q”. Omit for all forms. |
since | string | no | Earliest filing date, YYYY-MM-DD (default: 5 years before today; coverage floor 2001-01-01). |
until | string | no | Latest filing date, YYYY-MM-DD (default: today). |
limit | number | no | Max exhibit documents to return (1-100, default 25), newest filing first. |
Example call
Arguments
{
"company": "ADBE",
"exhibit_type": "EX-4",
"since": "2024-01-01",
"limit": 8
}
curl
curl -X POST https://gateway.pipeworx.io/sec-contracts/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"sec_contracts_by_company","arguments":{"company":"ADBE","exhibit_type":"EX-4","since":"2024-01-01","limit":8}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sec_contracts_by_company', {
"company": "ADBE",
"exhibit_type": "EX-4",
"since": "2024-01-01",
"limit": 8
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"sec-contracts": {
"url": "https://gateway.pipeworx.io/sec-contracts/mcp"
}
}
}
See Getting Started for client-specific install steps.