lighthouse-mcp 0.1.8 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -25
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
An MCP server that wraps around Google's Lighthouse tool to help measure various performance metrics for web pages.
|
|
4
4
|
|
|
5
|
-

|
|
6
|
-
|
|
7
5
|
## Features
|
|
8
6
|
|
|
9
7
|
- Run comprehensive Lighthouse audits on any URL
|
|
@@ -150,26 +148,7 @@ Claude will use the `get_performance_score` tool to analyze the website and retu
|
|
|
150
148
|
- Node.js 16+
|
|
151
149
|
- Chrome/Chromium browser (for Lighthouse)
|
|
152
150
|
|
|
153
|
-
##
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
Use the interactive release script to publish to both NPM and the MCP Registry:
|
|
158
|
-
|
|
159
|
-
```bash
|
|
160
|
-
./release.sh
|
|
161
|
-
```
|
|
162
|
-
|
|
163
|
-
The script will:
|
|
164
|
-
1. Check for uncommitted changes
|
|
165
|
-
2. Run tests (if they exist)
|
|
166
|
-
3. Build the project
|
|
167
|
-
4. Prompt for version bump type (patch/minor/major/custom)
|
|
168
|
-
5. Update both package.json and server.json versions
|
|
169
|
-
6. Create a preview of the package contents
|
|
170
|
-
7. Publish to NPM
|
|
171
|
-
8. Publish to MCP Registry
|
|
172
|
-
9. Create git commit and tag
|
|
173
|
-
10. Optionally push to remote repository
|
|
174
|
-
|
|
175
|
-
This ensures consistent releases to both registries with proper version synchronization.
|
|
151
|
+
## Endorsements
|
|
152
|
+
<a href="https://glama.ai/mcp/servers/@priyankark/lighthouse-mcp">
|
|
153
|
+
<img width="380" height="200" src="https://glama.ai/mcp/servers/@priyankark/lighthouse-mcp/badge" />
|
|
154
|
+
</a>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lighthouse-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"description": "MCP server for Google Lighthouse performance metrics",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "build/index.js",
|
|
@@ -35,10 +35,14 @@
|
|
|
35
35
|
"url": ""
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@modelcontextprotocol/sdk": "
|
|
38
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
39
39
|
"chrome-launcher": "^0.15.2",
|
|
40
40
|
"lighthouse": "^12.5.1"
|
|
41
41
|
},
|
|
42
|
+
"overrides": {
|
|
43
|
+
"basic-ftp": ">=5.2.0",
|
|
44
|
+
"lodash-es": ">=4.17.23"
|
|
45
|
+
},
|
|
42
46
|
"devDependencies": {
|
|
43
47
|
"@types/node": "^20.4.5",
|
|
44
48
|
"typescript": "^5.1.6"
|