Lighthouse Mcp

by priyankark

154 stars
677 downloads
Not rated
GitHub Website

About

Allows AI assistants such as Amp/Cline/Cursor/Claude Code/Codex/GitHub Copilot to use Google's lighthouse tool to measure perf metrics for your webpage. You can then run an agentic loop and get the assistants to optimize those metrics!

Details

Author
priyankark
GitHub stars
154
Downloads
677
Categories
Developer Tools

- Run comprehensive Lighthouse audits on any URL
- Get performance scores and metrics
- Configure device emulation (mobile/desktop)
- Control network throttling on/off
- Select specific audit categories (performance, accessibility, best‑practices, SEO, PWA)

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Lighthouse Mcp
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install via the MCP Registry, npx lighthouse-mcp, npm install -g lighthouse-mcp, or local clone and build. Then add a lighthouse entry to your MCP settings file with the appropriate command and args. Once configured, ask Claude or another MCP client to audit a URL.

run_audit

Run a Lighthouse audit on a URL

get_performance_score

Get just the performance score for a URL

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "lighthouse mcp": {
            "lighthouse": {
                "command": "npx",
                "args": [
                    "lighthouse-mcp"
                ],
                "disabled": false,
                "autoApprove": []
            }
        }
    }
}

McpServers

{
    "lighthouse": {
        "command": "npx",
        "args": [
            "lighthouse-mcp"
        ],
        "disabled": false,
        "autoApprove": []
    }
}

Lighthouse MCP Server

An MCP server that wraps around Google's Lighthouse tool to help measure various performance metrics for web pages.

Features

- Run comprehensive Lighthouse audits on any URL
- Get performance scores and metrics
- Configure device emulation (mobile/desktop)
- Control network throttling
- Select specific audit categories

Installation

Option 1: From MCP Registry (Recommended)

This server is available in the Model Context Protocol Registry. Install it using your MCP client or Claude Desktop.

Option 2: Using npx

You can run the tool directly using npx without installation:

npx lighthouse-mcp

Option 3: Global Installation

Install the package globally from npm:

npm install -g lighthouse-mcp

Then run it:

lighthouse-mcp

Option 4: Local Development

1. Clone this repository
2. Install dependencies:

   npm install

3. Build the project:
   npm run build

4. Run the server:
   npm start

MCP Configuration

When installed via npm (global or npx)

Add the following to your MCP settings configuration file:

{
  "mcpServers": {
    "lighthouse": {
      "command": "npx",
      "args": ["lighthouse-mcp"],
      "disabled": false,
      "autoApprove": []
    }
  }
}

When using local development version

Add the following to your MCP settings configuration file:

{
  "mcpServers": {
    "lighthouse": {
      "command": "node",
      "args": ["/absolute/path/to/lighthouse-mcp/build/index.js"],
      "disabled": false,
      "autoApprove": []
    }
  }
}

Replace /absolute/path/to/lighthouse-mcp with the actual path to this project.

Available Tools

run_audit

Run a comprehensive Lighthouse audit on a URL.

Parameters:
- url (required): The URL to audit
- categories (optional): Array of categories to audit (defaults to all)
- Options: "performance", "accessibility", "best-practices", "seo", "pwa"
- device (optional): Device to emulate (defaults to "mobile")
- Options: "mobile", "desktop"
- throttling (optional): Whether to apply network throttling (defaults to true)

Example:

{
"url": "https://example.com",
"categories": ["performance", "accessibility"],
"device": "desktop",
"throttling": false
}

get_performance_score

Get just the performance score for a URL.

Parameters:
- url (required): The URL to audit
- device (optional): Device to emulate (defaults to "mobile")
- Options: "mobile", "desktop"

Example:

{
"url": "https://example.com",
"device": "mobile"
}

Example Usage

Once the MCP server is configured, you can use it with Claude:

What's the performance score for example.com?

Claude will use the get_performance_score tool to analyze the website and return the results.

Requirements

- Node.js 16+
- Chrome/Chromium browser (for Lighthouse)

Endorsements

<a href="https://glama.ai/mcp/servers/@priyankark/lighthouse-mcp"> </a>
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.