Lease Agreement Analyzer
Reviews residential or commercial leases, identifies tenant-unfriendly clauses, compares terms against local tenant rights research via Brave Search, and generates a negotiation checklist. Prerequisites: brave-search MCP, python3.
MCP get_skill({ skillId: "lease-agreement-analyzer-205a6302" })Use this skill with your agent
Create a free account and connect via MCP
# Lease Agreement Analyzer
Review a residential or commercial lease, flag problematic clauses, and compare terms against local tenant rights.
## When to Use
- "Review my apartment lease before I sign"
- "Is this rent increase legal in {state}?"
- "What should I negotiate in this commercial lease?"
## Requirements
- **Brave Search MCP** for local tenant rights research
- **python3** for financial calculations
## Workflow
### Step 1 ā Lease Details
- **Lease type** (residential, commercial)
- **Location** (state/city ā for tenant rights)
- **Lease text** (paste or key sections)
- **Specific concerns**
### Step 2 ā Research Local Laws
```
brave_web_search: "{STATE} tenant rights {RESIDENTIAL/COMMERCIAL} {YEAR}"
brave_web_search: "{STATE} rental law landlord obligations {YEAR}"
brave_web_search: "{CITY} rent control laws {YEAR}"
brave_web_search: "{STATE} security deposit law maximum limit"
```
### Step 3 ā Analyze Key Terms
```markdown
# Lease Analysis: {ADDRESS}
š {CITY}, {STATE} | Type: {Residential/Commercial}
## Key Terms Summary
| Term | Details | Assessment |
|------|---------|------------|
| Rent | ${X}/month | {Market comparison} |
| Term | {N} months | {Standard/unusual} |
| Security deposit | ${X} | {Within legal limit?} |
| Rent increase | {Terms} | {Legal in {STATE}?} |
| Utilities | {Included/not} | {Normal for area} |
| Pets | {Policy} | {Deposit amount?} |
| Subletting | {Allowed/not} | {Restrictions?} |
| Maintenance | {Responsibility} | {Typical?} |
| Early termination | {Terms} | {Penalty amount?} |
## š“ Concerns
| # | Clause | Issue | Your Right |
|---|--------|-------|------------|
| 1 | {Clause} | {Why it's problematic} | {What local law says} |
## š” Negotiate These
- {Clause}: Ask for {specific change}
- {Clause}: Request {specific change}
## š¢ Standard Clauses
- {Clause}: Typical for {STATE} ā
```
### Step 4 ā Cost Analysis
```bash
python3 << 'PYEOF'
rent = {MONTHLY_RENT}
deposit = {SECURITY_DEPOSIT}
term_months = {LEASE_TERM}
move_in = deposit + rent # first month + deposit
total_commitment = rent * term_months
early_term_penalty = {PENALTY}
print(f"Move-in cost: ${move_in:,.0f}")
print(f"Total commitment ({term_months} months): ${total_commitment:,.0f}")
print(f"Early termination cost: ${early_term_penalty:,.0f}")
print(f"Effective monthly (incl. deposit amortized): ${(total_commitment + deposit) / term_months:,.0f}")
PYEOF
```
### Step 5 ā Save Analysis
```bash
mkdir -p outputs/legal
cat > "outputs/legal/lease-analysis-{ADDRESS_SLUG}-{DATE}.md" << 'EOF'
{ANALYSIS}
EOF
```
## Important Rules
- ALWAYS disclaim: "not legal advice ā consult a tenant rights attorney"
- Tenant rights vary dramatically by state/city ā always research local laws
- Flag illegal clauses (e.g., waiving habitability rights) clearly
- Compare deposit to state maximum where applicable
- Be factual about what the lease says vs. what the law requires
## Example Prompts
- "Review my NYC apartment lease ā is the broker fee clause legal?"
- "Analyze this commercial lease for a small retail space"
- "My landlord wants to raise rent 20% ā is this allowed in California?"Related Skills
More skills in Legal & Contracts
Contract Clause Analyzer
Reads a contract or agreement, identifies key clauses, flags risky or unusual terms, and generates a plain-English summary with recommendations. Researches standard clause language via Brave Search. Prerequisites: brave-search MCP, python3.
Dispute Resolution Letter Writer
Drafts professional dispute letters (billing errors, warranty claims, landlord issues, service complaints) with proper formatting, legal references from Brave Search, and escalation paths. Prerequisites: brave-search MCP.
Freelance Contract Builder
Generates a customized freelance/consulting contract from a template with project scope, payment terms, IP assignment, and revision policies. Researches standard rates via Brave Search. Prerequisites: brave-search MCP, pandoc.
Privacy Policy & ToS Analyzer
Reads a privacy policy or terms of service, extracts data collection practices, identifies concerning permissions, and generates a plain-English summary with a privacy risk score. Prerequisites: brave-search MCP, python3.
Explore Other Categories
Skills from other categories with shared topics
Book-to-Action Notes Generator
Researches a book's key ideas via Brave Search, generates structured chapter summaries with actionable takeaways, and creates an implementation checklist. Prerequisites: brave-search MCP.
Company Due Diligence Researcher
Conducts comprehensive research on a company via Brave Search covering financials, leadership, culture, news, and competitive landscape. Generates a diligence brief for job seekers, investors, or partners. Prerequisites: brave-search MCP, python3.
Competitor Analysis Report
Researches competitors via Brave Search and builds a comprehensive competitive landscape analysis with positioning, pricing, strengths/weaknesses, and strategic recommendations. Prerequisites: brave-search MCP, python3.