web-perf-mcp
Version:
MCP Server that audits the web page for finding the bottlenecks and CPU profiling using Lighthouse and Puppeteer
19 lines (18 loc) • 469 B
TypeScript
import { TestConfig } from '../runner/types.js';
export declare class PerformanceHandlers {
runAudit(config: TestConfig): Promise<{
content: ({
type: string;
text: string;
} | {
type: string;
text: import("../runner/types.js").PerformanceMetrics;
})[];
}>;
analyzeData(args: any): Promise<{
content: {
type: string;
text: string;
}[];
}>;
}