| clickuid*dblClickincludeSnapshot | Clicks on the provided element |
| close_pagepageId* | Closes the page by its index. The last open page cannot be closed. |
| dragfrom_uid*to_uid*includeSnapshot | Drag an element onto another element |
| emulatenetworkConditionscpuThrottlingRategeolocationuserAgentcolorSchemeviewportextraHttpHeaders | Emulates various features on the selected page. |
| evaluate_scriptfunction*argsfilePathdialogAction | Evaluate a JavaScript function inside the currently selected page. Returns the response as JSON, so returned values have to be JSON-serializable. |
| filluid*value*includeSnapshot | Type text into an input, text area or select an option from a <select> element. |
| fill_formelements*includeSnapshot | Fill out multiple form elements (inputs, selects, checkboxes, radios) at once. ALWAYS prefer this tool over multiple individual 'fill' or 'click' calls when interacting with forms. It is significantly faster, more reliable, and reduces turn count. Example: Fill username, password, and check "Remember Me" in one call. |
| get_console_messagemsgid* | Gets a console message by its ID. You can get all messages by calling list_console_messages. |
| get_network_requestreqidrequestFilePathresponseFilePath | Gets a network request by an optional reqid, if omitted returns the currently selected request in the DevTools Network panel. |
| handle_dialogaction*promptText | If a browser dialog was opened, use this command to handle it |
| hoveruid*includeSnapshot | Hover over the provided element |
| lighthouse_auditmodedeviceoutputDirPath | Get Lighthouse score and reports for accessibility, SEO, best practices, and agentic browsing. This excludes performance. For performance audits, run performance_start_trace |
| list_console_messagespageSizepageIdxtypesincludePreservedMessagesserviceWorkerId | List all console messages for the currently selected page since the last navigation. |
| list_network_requestspageSizepageIdxresourceTypesincludePreservedRequests | List all requests for the currently selected page since the last navigation. |
| list_pages | Get a list of pages open in the browser. |
| navigate_pagetypeurlignoreCachehandleBeforeUnloadinitScripttimeout | Go to a URL, or back, forward, or reload. Use project URL if not specified otherwise. |
| new_pageurl*backgroundisolatedContexttimeout | Open a new tab and load a URL. Use project URL if not specified otherwise. |
| performance_analyze_insightinsightSetId*insightName* | Provides more detailed information on a specific Performance Insight of an insight set that was highlighted in the results of a trace recording. |
| performance_start_tracereloadautoStopfilePath | Start a performance trace on the selected webpage. Use to find frontend performance issues, Core Web Vitals (LCP, INP, CLS), and improve page load speed. |
| performance_stop_tracefilePath | Stop the active performance trace recording on the selected webpage. |
| press_keykey*includeSnapshot | Press a key or key combination. Use this when other input methods like fill() cannot be used (e.g., keyboard shortcuts, navigation keys, or special key combinations). |
| resize_pagewidth*height* | Resizes the selected page's window so that the page has specified dimension |
| select_pagepageId*bringToFront | Select a page as a context for future tool calls. |
| take_heapsnapshotfilePath* | Capture a heap snapshot of the currently selected page. Use to analyze the memory distribution of JavaScript objects and debug memory leaks. |
| take_screenshotformatqualityuidfullPagefilePath | Take a screenshot of the page or element. |
| take_snapshotverbosefilePath | Take a text snapshot of the currently selected page based on the a11y tree. The snapshot lists page elements along with a unique
identifier (uid). Always use the latest snapshot. Prefer taking a snapshot over taking a screenshot. The snapshot indicates the element selected
in the DevTools Elements panel (if any). |
| type_texttext*submitKey | Type text using keyboard into a previously focused input |
| upload_fileuid*filePath*includeSnapshot | Upload a file through a provided element. |
| wait_fortext*timeout | Wait for the specified text to appear on the selected page. |