browser-connect-mcp
Version:
MCP server for browser DevTools and backend debugging - analyze console logs, network requests, and backend logs with AI assistance
15 lines • 497 B
TypeScript
export interface DebugPrompt {
name: string;
description: string;
arguments?: {
name: string;
description: string;
required?: boolean;
default?: any;
}[];
template: string;
}
export declare const debuggingPrompts: DebugPrompt[];
export declare function getPrompt(name: string): DebugPrompt | undefined;
export declare function renderPrompt(prompt: DebugPrompt, args?: Record<string, any>): string;
//# sourceMappingURL=debugging-prompts.d.ts.map