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.
| term | string | required |
| party_a.name | string | required |
| party_a.signer | string | required |
| party_a.address | string | required |
| party_b.name | string | required |
| party_b.signer | string | required |
| party_b.address | string | required |
| purpose | string | required |
| governing_law | string | required |
| effective_date | string | required |
| survival_period | string | required |
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.