Lemonade MCP Server

1

Add it to Claude Code

Run this in a terminal.

Run in terminal
claude mcp add lemonade-mcp -- npx @striderlabs/mcp-lemonade
README.md

An MCP connector for Lemonade insurance services.

@striderlabs/mcp-lemonade

An MCP (Model Context Protocol) connector for Lemonade insurance. This package enables AI assistants like Claude to interact with Lemonade's insurance services for renters, homeowners, pet, and car insurance.

What This Package Does

This MCP server provides tools to:

  • Get insurance quotes for renters, homeowners, pet, and car insurance
  • View existing policy details
  • File insurance claims
  • Check claim statuses
  • Update policy coverage
  • Retrieve policy documents
  • Contact Lemonade customer support

The server uses Playwright for browser automation against lemonade.com and communicates via stdio transport following the Model Context Protocol specification.

Requirements

  • Node.js 18 or later
  • Playwright with Chromium browser installed

Installation

npm install @striderlabs/mcp-lemonade
npx playwright install chromium

Or install globally:

npm install -g @striderlabs/mcp-lemonade
npx playwright install chromium

Configuration

Claude Desktop

Add the following to your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "lemonade": {
      "command": "npx",
      "args": ["@striderlabs/mcp-lemonade"]
    }
  }
}

If installed globally:

{
  "mcpServers": {
    "lemonade": {
      "command": "mcp-lemonade"
    }
  }
}

Other MCP Clients

For any MCP-compatible client, configure the server to run:

npx @striderlabs/mcp-lemonade

The server communicates over stdio.

Tools

1. `get_quote`

Get an insurance quote from Lemonade.

Parameters:

Parameter Type Required Description
insurance_type string (enum) Yes One of: renters, homeowners, pet, car
zip_code string Yes ZIP code for the insurance location
coverage_amount number No Desired coverage amount in dollars
additional_info object No Additional information specific to the insurance type

Example:

Get me a renters insurance quote for ZIP code 10001 with $50,000 coverage

2. `view_policy`

View details of an existing Lemonade insurance policy.

Parameters:

Parameter Type Required Description
email string Yes Email address associated with the policy
policy_id string No The policy ID to retrieve

Example:

Show me my Lemonade policy details for user@example.com

3. `file_claim`

File a new insurance claim with Lemonade.

Parameters:

Parameter Type Required Description
policy_id string Yes The policy ID for which to file the claim
claim_type string Yes Type of claim (e.g., theft, damage, medical)
description string Yes Detailed description of the incident
incident_date string Yes Date of the incident (YYYY-MM-DD format)
estimated_loss number No Estimated loss amount in dollars

Example:

File a theft claim for policy LM-12345, my laptop was stolen on 2024-01-15, estimated loss $1,500

4. `check_claim_status`

Check the status of an existing Lemonade insurance claim.

Parameters:

Parameter Type Required Description
claim_id string Yes The claim ID to check
email string Yes Email address associated with the claim

Example:

Check the status of claim CLM-67890 for user@example.com

5. `update_coverage`

Update coverage on an existing Lemonade insurance policy.

Parameters:

Parameter Type Required Description
policy_id string Yes The policy ID to update
coverage_changes object Yes Object describing the coverage changes
coverage_changes.coverage_amount number No New coverage amount in dollars
coverage_changes.deductible number No New deductible amount in dollars
coverage_changes.add_ons string[] No List of add-ons to add or remove

Example:

Update policy LM-12345 to increase coverage to $75,000 and lower deductible to $500

6. `get_documents`

Retrieve policy documents from Lemonade.

Parameters:

Parameter Type Required Description
policy_id string Yes The policy ID to get documents for
email string Yes Email address associated with the policy
document_type string (enum) No One of: declarations, contract, id_card, all

Example:

Get the declarations page for policy LM-12345 associated with user@example.com

7. `contact_support`

Contact Lemonade customer support.

**Paramet

Tools (7)

get_quoteGet an insurance quote from Lemonade.
view_policyView details of an existing Lemonade insurance policy.
file_claimFile a new insurance claim with Lemonade.
check_claim_statusCheck the status of an existing Lemonade insurance claim.
update_coverageUpdate coverage on an existing Lemonade insurance policy.
get_documentsRetrieve policy documents from Lemonade.
contact_supportContact Lemonade customer support.

Configuration

claude_desktop_config.json
{"mcpServers": {"lemonade": {"command": "npx", "args": ["@striderlabs/mcp-lemonade"]}}}

Try it

Get me a renters insurance quote for ZIP code 10001 with $50,000 coverage.
Show me my Lemonade policy details for user@example.com.
File a theft claim for policy LM-12345, my laptop was stolen on 2024-01-15, estimated loss $1,500.
Check the status of claim CLM-67890 for user@example.com.
Update policy LM-12345 to increase coverage to $75,000 and lower deductible to $500.

Frequently Asked Questions

What are the key features of Lemonade MCP Server?

Get insurance quotes for renters, homeowners, pet, and car insurance. View existing policy details and retrieve policy documents. File new insurance claims and check existing claim statuses. Update policy coverage amounts and deductibles. Uses Playwright for browser automation against lemonade.com.

What can I use Lemonade MCP Server for?

Quickly obtaining insurance quotes without manually navigating the website. Checking the status of an active claim through natural language queries. Retrieving policy documents like ID cards or contracts for reference. Managing policy coverage adjustments via AI assistant.

How do I install Lemonade MCP Server?

Install Lemonade MCP Server by running: npx @striderlabs/mcp-lemonade

What MCP clients work with Lemonade MCP Server?

Lemonade MCP Server 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 Lemonade MCP Server 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