ppaperbrainTemplates
Sign inGet started
← All templates
Sales & Agreements

NDA — Mutual

Mutual non-disclosure agreement — fixed clause text, variable parties, purpose, term, and governing law.

The contract

Fields your API call provides. Amounts and totals are always computed by the caller — templates only format.

termstringrequired
party_a.namestringrequired
party_a.signerstringrequired
party_a.addressstringrequired
party_b.namestringrequired
party_b.signerstringrequired
party_b.addressstringrequired
purposestringrequired
governing_lawstringrequired
effective_datestringrequired
survival_periodstringrequired

MCP-ready: forks of this template will expose generate_mutual_nda when the MCP server ships.

Generate it (after you fork & publish)

curl -X POST https://your-paperbrain-host/api/generate/gen_<your-id> \
  -H "Content-Type: application/json" \
  -d '{
    "term": "two (2) years",
    "party_a": {
      "name": "Lumen Labs, Inc.",
      "signer": "Aisha Karim, VP Engineering",
      "address": "550 Mission Street, Floor 12, San Francisco, CA 94105"
    },
    "party_b": {
      "name": "Acme Corp",
      "signer": "Dana Whitfield, Director of Procurement",
      "address": "1200 Harbor Blvd, Seattle, WA 98104"
    },
    "purpose": "a potential commercial partnership involving document-automation infrastructure",
    "governing_law": "the State of Delaware",
    "effective_date": "2026-06-12",
    "survival_period": "three (3) years"
  }'

gen_<your-id>is your generator's id once you fork and publish. The body shown is this template's sample data — the exact shape the contract validates.