Chrome MCP Server provides fine-grained control over a Chrome browser instance through the Chrome DevTools Protocol (CDP). It enables AI assistants to navigate web pages, interact with elements, type text, and extract page content through a set of specialized tools. The server implements SSE transport for the Model Context Protocol and includes features like automatic handling of dynamic content, mutation tracking, and prevention of new window/tab openings. Particularly valuable for workflows requiring web automation, form filling, or content extraction directly within conversation interfaces.
Nessuna recensione ancora. Sii il primo a recensire!
Accedi per unirti alla conversazione
Navigate to a specific URL. Parameters: url (string): The URL to navigate to
Click at specific coordinates. Parameters: x (number): X coordinate, y (number): Y coordinate
Type text at the current focus. Parameters: text (string): Text to type
Click on an element by its index in the page info. Parameters: selector (string): Element index (e.g., '0' for the first element)
Get text content of an element using a CSS selector. Parameters: selector (string): CSS selector to find the element
Get semantic information about the page including interactive elements and text nodes.
Get current page state including URL, title, scroll position, and viewport size.