Chrome Browser Control
Summary
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.
Available Actions(7)
navigate
Navigate to a specific URL. Parameters: url (string): The URL to navigate to
click
Click at specific coordinates. Parameters: x (number): X coordinate, y (number): Y coordinate
type
Type text at the current focus. Parameters: text (string): Text to type
clickElement
Click on an element by its index in the page info. Parameters: selector (string): Element index (e.g., '0' for the first element)
getText
Get text content of an element using a CSS selector. Parameters: selector (string): CSS selector to find the element
getPageInfo
Get semantic information about the page including interactive elements and text nodes.
getPageState
Get current page state including URL, title, scroll position, and viewport size.
社区评论
暂无评论. 成为第一个评论的人!
登录以参与讨论