Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"lighthouse": {
"args": [
"lighthouse-mcp"
],
"command": "npx",
"disabled": false,
"autoApprove": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server that wraps around Google's Lighthouse tool to help measure various performance metrics for web pages.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'You' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked You against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in analytics / developer-tools
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
MCP server for using the GitLab API
MCP Security Weekly
Get CVE alerts and security updates for io.github.priyankark/lighthouse-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP server that wraps around Google's Lighthouse tool to help measure various performance metrics for web pages.
This server is available in the Model Context Protocol Registry. Install it using your MCP client or Claude Desktop.
You can run the tool directly using npx without installation:
npx lighthouse-mcp
Install the package globally from npm:
npm install -g lighthouse-mcp
Then run it:
lighthouse-mcp
npm install
npm run build
npm start
Add the following to your MCP settings configuration file:
{
"mcpServers": {
"lighthouse": {
"command": "npx",
"args": ["lighthouse-mcp"],
"disabled": false,
"autoApprove": []
}
}
}
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.
Run a comprehensive Lighthouse audit on a URL.
Parameters:
url (required): The URL to auditcategories (optional): Array of categories to audit (defaults to all)
device (optional): Device to emulate (defaults to "mobile")
throttling (optional): Whether to apply network throttling (defaults to true)Example:
{
"url": "https://example.com",
"categories": ["performance", "accessibility"],
"device": "desktop",
"throttling": false
}
Get just the performance score for a URL.
Parameters:
url (required): The URL to auditdevice (optional): Device to emulate (defaults to "mobile")
Example:
{
"url": "https://example.com",
"device": "mobile"
}
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.