Selenium-powered browser automation MCP server that enables AI agents to perform web interactions like navigation, clicking, form filling, and scrolling with minimal human supervision. Built to support complex web tasks through a flexible, robust set of tools that handle various edge cases in web element interaction, making it particularly useful for web scraping, testing, and automated browsing scenarios.
Nessuna recensione ancora. Sii il primo a recensire!
Accedi per unirti alla conversazione
Click an element on the page. Args: session_id (string): Session ID of the browser, selector (string): CSS selector, XPath, or ID of the element to click, selector_type (string): Type of selector (css, xpath, id)
Close a browser session. Args: session_id (string): Session ID of the browser to close
Input text into an element. Args: session_id (string): Session ID of the browser, selector (string): CSS selector, XPath, or ID of the input field, text (string): Text to enter into the field, selector_type (string): Type of selector (css, xpath, id), clear_first (boolean): Whether to clear the field before entering text
Navigate to a URL. Args: session_id (string): Session ID of the browser, url (string): URL to navigate to
Scroll the page. Args: session_id (string): Session ID of the browser, x (integer): Horizontal scroll amount in pixels, y (integer): Vertical scroll amount in pixels
Send keyboard keys to the browser. Args: session_id (string): Session ID of the browser, key (string): Key to send (e.g., ENTER, TAB, etc.), selector (string): CSS selector, XPath, or ID of the element to send keys to (optional), selector_type (string): Type of selector (css, xpath, id)
Start a new browser session. Args: headless (boolean): Whether to run the browser in headless mode
Take a screenshot of the current page. Args: session_id (string): Session ID of the browser