mcp-chrome-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CHROME_PROFILE_PATH | No | Path to the Chrome user data directory. Defaults to OS-specific default (e.g., %LOCALAPPDATA%\Google\Chrome\User Data on Windows, ~/Library/Application Support/Google/Chrome on macOS, ~/.config/google-chrome on Linux). |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| tool_add_cookieD | Add a cookie. |
| tool_backA | Navigate back in the browser history. |
| tool_clickA | Click an element on the page. |
| tool_close_browserA | Close the browser instance. |
| tool_delete_all_cookiesA | Delete all cookies. |
| tool_delete_cookieC | Delete a specific cookie. |
| tool_execute_scriptC | Execute JavaScript code. |
| tool_forwardB | Navigate forward in the browser history. |
| tool_fullscreen_windowB | Switch the browser window to full screen. |
| tool_get_cookiesA | Return all cookies from the current page. |
| tool_get_credentialsC | |
| tool_get_current_urlA | Return the current page's URL. |
| tool_get_elementsA | Get multiple elements matching a selector. |
| tool_get_logC | Retrieve browser logs. |
| tool_get_page_sourceA | Return the current page's HTML source. |
| tool_get_textA | Get text from an element. |
| tool_get_titleA | Return the current page's title. |
| tool_get_window_handlesB | Return all window handles. |
| tool_get_window_sizeA | Return the current browser window size. |
| tool_implicitly_waitC | Set implicitly wait time. |
| tool_maximize_windowB | Maximize the browser window. |
| tool_minimize_windowB | Minimize the browser window. |
| tool_navigateA | Navigate to a URL. |
| tool_open_browserA | Open a new Chrome browser instance. |
| tool_refreshB | Refresh the current page. |
| tool_sampleC | Set Sample execution timeout. |
| tool_save_credentialsC | |
| tool_set_page_load_timeoutC | Set page load timeout. |
| tool_set_script_timeoutC | Set script execution timeout. |
| tool_set_window_sizeC | Set the browser window size. |
| tool_switch_to_default_contentD | Switch back to default content. |
| tool_switch_to_frameC | Switch to a specific frame. |
| tool_switch_to_windowC | Switch to a specific window. |
| tool_take_screenshotC | Save a screenshot of the current page. |
| tool_typeA | Type text into an element. |
| tool_web_loginA | |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| prompt | MCP Tool Definitions |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 36 tools
Most tools have distinct purposes (e.g., navigate, click, type), but tool_web_login overlaps with multiple basic tools and could cause ambiguity. Additionally, tool_get_text and tool_get_elements have similar functionality.
All tools follow a consistent 'tool_verb_noun' snake_case pattern. While tool_web_login deviates slightly, the overall pattern is uniform and predictable.
36 tools is excessive for a browser automation server. Many low-level tools (e.g., tool_implicitly_wait, tool_set_page_load_timeout) could be combined or made optional, leading to unnecessary complexity.
Covers core browser actions (navigation, clicking, typing, cookies, frames, windows) but lacks explicit element wait conditions, alert handling, and attribute retrieval. The login tool partially addresses high-level needs.