@dorothywebb/any-browser-mcp
Version:
Any Browser MCP - Launch Chrome with your actual data in debug mode for comprehensive browser automation
21 lines • 682 B
TypeScript
/**
* Any Browser MCP Server
*
* This server creates a duplicate of your primary Chrome installation running in debug mode:
* 1. Copies all your Chrome data (bookmarks, passwords, extensions, history)
* 2. Launches as a separate instance with debugging enabled
* 3. Initializes lazily when MCP tools are first used
* 4. Preserves your main Chrome session completely untouched
*/
declare class AnyBrowserMCPServer {
private server;
private browserManager;
private config;
constructor();
private setupHandlers;
start(): Promise<void>;
stop(): Promise<void>;
}
export { AnyBrowserMCPServer };
//# sourceMappingURL=server.d.ts.map