@danielsogl/lighthouse-mcp
Version:
A comprehensive Model Context Protocol (MCP) server that provides web performance auditing, accessibility testing, SEO analysis, security assessment, and Core Web Vitals monitoring using Google Lighthouse. Enables LLMs and AI agents to perform detailed we
20 lines (19 loc) • 738 B
TypeScript
export type ChromeLaunchConfig = {
headless?: boolean;
userDataDir?: string;
profileDirectory?: string;
remoteDebuggingPort?: number;
extraChromeFlags?: string[];
};
export declare function setChromeLaunchConfig(config: ChromeLaunchConfig): void;
export declare function getChromeLaunchConfig(): ChromeLaunchConfig;
export declare function buildChromeFlags(config: ChromeLaunchConfig): string[];
export declare function buildChromeLaunchOptions(config: ChromeLaunchConfig): {
chromeFlags: string[];
userDataDir?: string;
};
export declare function getChromeLaunchOptions(): {
chromeFlags: string[];
userDataDir?: string;
};
export declare function isProfileConfig(config: ChromeLaunchConfig): boolean;