Open a headless browser on localhost, read console logs, read network logs, and construct a plan to fix your vibe coded errors. Close the browser when done to maintain a clean environment.
Tools
open_browser
Open a browser at the specified URL and start monitoring console logs and network requests. Args: url: The URL to open in the browser Returns: A confirmation message
get_console_logs
Get console logs from the currently open browser page. Repeated messages are deduplicated and shown with a count of repetitions. Args: last_n: Number of log entries to return, prioritizing the most recent ones. Use a large number to get all logs. Returns: A list of console log entries with type, text, location, timestamp, and count for repeated messages
get_network_requests
Get network requests from the currently open browser page. Args: last_n: Number of network request entries to return, prioritizing the most recent ones. Use a large number to get all requests. Returns: A list of network request entries with URL, method, headers, and response data
close_browser
Close the browser and clean up resources. Returns: A confirmation message
Installation
Login to configure client