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

NameTypeRequiredDescription
companystringyesTicker (“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_typestringnoExhibit 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.
formstringnoRoot form filter, e.g. “8-K” or “10-K,10-Q”. Omit for all forms.
sincestringnoEarliest filing date, YYYY-MM-DD (default: 5 years before today; coverage floor 2001-01-01).
untilstringnoLatest filing date, YYYY-MM-DD (default: today).
limitnumbernoMax 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.

Regenerated from source · build August 29, 2026