Playwright-Lighthouse

by kbyk004

1 stars
Not rated
GitHub

About

Combines Playwright's browser automation with Lighthouse's auditing capabilities to analyze website performance, generate detailed reports, and capture screenshots for web development optimization.

Details

Author
kbyk004
Repository
kbyk004-diy/playwright-lighthouse-mcp
GitHub stars
1
License
MIT License
Categories
Productivity, Developer Tools, Design, AI, Media, Infrastructure, Frontend
Tags
#web

- Performance analysis with Lighthouse
- Screenshot capture

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 Playwright-Lighthouse
    Command (node, npx, python, etc.) node
    Arguments
    • Argument 1 /path-to/playwright-lighthouse-mcp/build/index.js

    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

npm install
npx playwright install

Add the following to the Claude for Desktop configuration file (~/Library/Application Support/Claude/claude_desktop_config.json):

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

run-lighthouse

Runs a Lighthouse performance analysis on the currently open page. Parameters: url (string), categories (array of strings, default: ['performance']), maxItems (number, default: 3, max: 5)

take-screenshot

Takes a screenshot of the currently open page. Parameters: url (string), fullPage (boolean, default: false)

Claude Desktop / Cursor

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

{
    "mcpServers": {
        "playwright-lighthouse": {
            "cwd": "string (optional)",
            "env": {},
            "args": [
                "/path-to/playwright-lighthouse-mcp/build/index.js"
            ],
            "shell": false,
            "command": "node"
        }
    }
}

Linux

{
    "cwd": "string (optional)",
    "env": [],
    "args": [
        "/path-to/playwright-lighthouse-mcp/build/index.js"
    ],
    "shell": false,
    "command": "node"
}

Macos

{
    "cwd": "string (optional)",
    "env": [],
    "args": [
        "/path-to/playwright-lighthouse-mcp/build/index.js"
    ],
    "shell": false,
    "command": "node"
}

Windows

{
    "cwd": "string (optional)",
    "env": [],
    "args": [
        "/path-to/playwright-lighthouse-mcp/build/index.js"
    ],
    "shell": false,
    "command": "node"
}

Playwright-Lighthouse MCP Server

A MCP server that analyzes web site performance using Playwright and Lighthouse. Through the Model Context Protocol (MCP), LLMs can perform web site performance analysis.

Features

- Performance analysis with Lighthouse
- Screenshot capture

Setup

Prerequisites

- Node.js 18 or higher
- npm

Installation

```bash

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.