web-perf-mcp
Version:
MCP Server that audits the web page for finding the bottlenecks and CPU profiling using Lighthouse and Puppeteer
40 lines (39 loc) • 1.02 kB
JSON
{
"name": "web-perf-mcp",
"version": "0.1.1",
"description": "MCP Server that audits the web page for finding the bottlenecks and CPU profiling using Lighthouse and Puppeteer",
"main": "dist/server/index.js",
"type": "module",
"bin": {
"web-perf-mcp": "dist/server/index.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "npm run build",
"start": "npm run build && node ./dist/server/index.js",
"test": "npm run build && node ./dist/runner/index.js --url https://example.com"
},
"keywords": [
"mcp",
"performance-audit",
"web-performance-mcp"
],
"author": "Vignesh Shanmugam",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@types/source-map": "^0.5.7",
"commander": "^14.0.0",
"lighthouse": "^12.8.0",
"puppeteer": "^24.14.0",
"source-map": "^0.7.4"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}