LandlordLaw MCP Server

1

Add it to Claude Code

Run this in a terminal.

Run in terminal
claude mcp add landlordlaw-mcp -- npx -y landlordlaw-mcp
README.md

Instant, AI-queryable landlord-tenant law lookups with statute citations

g MCP Server

Instant, AI-queryable landlord-tenant law lookups with statute citations across 5 US states.


What It Does

LandlordLaw MCP is a legal intelligence server that provides AI agents with instant access to jurisdiction-specific landlord-tenant law data. Query security deposit limits, eviction timelines, entry requirements, and late fee rules โ€” all backed by verified state statutes and local ordinances.

  • โšก Sub-10ms response times (pre-built in-memory cache)
  • ๐Ÿ“š 36 legal rules across 4 topics
  • ๐Ÿ›๏ธ Statute-cited (Cal. Civ. Code, Tex. Prop. Code, etc.)
  • ๐ŸŒ† City overrides for Los Angeles, Chicago, NYC
  • ๐Ÿ”’ No external API calls (100% local data)

Built for the CTX Protocol marketplace with full Data Broker Standard compliance.


Supported Jurisdictions

States

  • California (CA) โ€” includes AB 1482 just cause eviction, AB 12 deposit limits
  • Texas (TX) โ€” landlord-friendly, no statutory deposit caps
  • New York (NY) โ€” HSTPA 2019, Good Cause Eviction (2024)
  • Florida (FL) โ€” fast eviction timelines, minimal deposit restrictions
  • Illinois (IL) โ€” state law + Chicago RLTO variations

City Overrides

  • Los Angeles, CA โ€” RSO just cause, relocation assistance requirements
  • New York City, NY โ€” rent-stabilized unit protections, interest on deposits
  • Chicago, IL โ€” RLTO strict caps on deposits/late fees, just cause eviction

Available Tools

`get_deposit_rules`

Get security deposit regulations including maximum amounts, return deadlines, interest requirements, and penalties.

Example query: "What's the maximum security deposit in California for an unfurnished apartment?"

Returns:

{
  "state": "CA",
  "max_deposit": "1 month's rent",
  "return_deadline_days": 21,
  "itemized_deductions_required": true,
  "interest_required": false,
  "statute_reference": "Cal. Civ. Code ยง 1950.5",
  "rule_summary": "California limits security deposits to 1 month's rent...",
  "last_updated": "2026-03-22T..."
}

`get_eviction_timeline`

Get eviction notice periods, cure rights, just cause requirements, and court timelines.

Example query: "How many days notice does a Texas landlord need to give for nonpayment of rent?"

Returns:

{
  "state": "TX",
  "nonpayment_notice_days": 3,
  "cure_period_allowed": false,
  "just_cause_required": false,
  "estimated_court_timeline_days": "10-30 days",
  "statute_reference": "Tex. Prop. Code ยงยง 24.002-24.005",
  "rule_summary": "Texas is landlord-friendly with no statewide just cause..."
}

`get_entry_requirements`

Get landlord entry notification rules including notice periods, permitted reasons, and emergency access.

Example query: "How much advance notice must a Florida landlord give before entering a rental unit?"

Returns:

{
  "state": "FL",
  "notice_required": true,
  "notice_hours": 12,
  "notice_must_be_written": false,
  "emergency_entry_allowed": true,
  "entry_hours_restriction": "7:30am-8pm",
  "statute_reference": "Fla. Stat. ยง 83.53"
}

`get_late_fee_rules`

Get late fee caps, grace period requirements, and NSF check fee limits.

Example query: "What's the maximum late fee a Chicago landlord can charge on $1,200 rent?"

Returns:

{
  "state": "IL",
  "city_override": "Chicago",
  "late_fee_cap": "$10 + 5% of rent over $500 = $45",
  "grace_period_days": 5,
  "grace_period_required_by_law": true,
  "statute_reference": "Chicago RLTO ยง 5-12-140"
}

`get_rent_increase_rules`

Get rent increase caps, notice periods, and rent control rules for a US state.

Example query: "Does California have rent control?"

Returns:

{
  "state": "CA",
  "rent_control_exists": true,
  "max_annual_increase": "5% + CPI (max 10% total) under AB 1482",
  "notice_required_days": 90,
  "exempt_properties": "Buildings built after 2/1/1995, single-family homes (unless owned by corporation/REIT)",
  "statute_reference": "Cal. Civ. Code ยง 1947.12",
  "rule_summary": "AB 1482 (2019) caps rent increases statewide..."
}

`get_habitability_standards`

Get implied warranty of habitability requirements and tenant remedies for a US state.

Example query: "Can a California tenant use 'repair and deduct' for habitability issues?"

Returns:

{
  "state": "CA",
  "implied_warranty_exists": true,
  "repair_and_deduct_allowed": true,
  "rent_withholding_allowed": true,
  "repair_timeline_days": "30 days for non-emergency repairs",
  "tenant_remedies": "Repair and deduct (up to 1 month rent), rent withholding, sue for damages...",
  "statute_reference": "Cal. Civ. Code ยงยง 1941-1942.5"
}

`get_lease_termination_rules`

Get lease termination rules including early termination, abandonment, and military/DV protections.

Example query: "Can a domestic violence victim break a lease early in California?"

Returns:

{
  "state": "CA",
  "landlord_duty_to_mit

Tools (7)

get_deposit_rulesGet security deposit regulations including maximum amounts, return deadlines, interest requirements, and penalties.
get_eviction_timelineGet eviction notice periods, cure rights, just cause requirements, and court timelines.
get_entry_requirementsGet landlord entry notification rules including notice periods, permitted reasons, and emergency access.
get_late_fee_rulesGet late fee caps, grace period requirements, and NSF check fee limits.
get_rent_increase_rulesGet rent increase caps, notice periods, and rent control rules for a US state.
get_habitability_standardsGet implied warranty of habitability requirements and tenant remedies for a US state.
get_lease_termination_rulesGet lease termination rules including early termination, abandonment, and military/DV protections.

Configuration

claude_desktop_config.json
{"mcpServers": {"landlordlaw": {"command": "npx", "args": ["-y", "landlordlaw-mcp"]}}}

Try it

โ†’What is the maximum security deposit allowed for an unfurnished apartment in California?
โ†’How many days notice does a Texas landlord need to provide for nonpayment of rent?
โ†’Does Chicago have specific rent control or late fee caps I should be aware of?
โ†’Can a tenant in California use 'repair and deduct' for habitability issues?
โ†’What are the landlord entry requirements for a rental unit in Florida?

Frequently Asked Questions

What are the key features of LandlordLaw MCP?

Sub-10ms response times via in-memory cache. Access to 36 legal rules across 4 topics. Verified statute citations for all data. City-specific overrides for Los Angeles, Chicago, and NYC. 100% local data with no external API calls.

What can I use LandlordLaw MCP for?

Assisting property managers with verifying local compliance for lease agreements. Helping tenants understand their rights regarding security deposits and habitability. Providing AI agents with accurate legal context for drafting rental notices. Quickly checking eviction timelines for specific jurisdictions.

How do I install LandlordLaw MCP?

Install LandlordLaw MCP by running: npx -y landlordlaw-mcp

What MCP clients work with LandlordLaw MCP?

LandlordLaw MCP works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep LandlordLaw MCP docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare