Overview
chrome-mcp-server is a server designed to interact with Chrome, enabling developers to create applications that can communicate with the Chrome browser.
To use chrome-mcp-server, clone the repository from GitHub, set up the server, and configure it to interact with your Chrome instance.
- Facilitates communication between applications and the Chrome browser. - Supports various commands to control Chrome behavior. - Easy integration with existing applications.
- Automating browser tasks for testing purposes.
- Developing browser extensions that require server-side logic.
- Creating applications that need to control Chrome remotely.
Add to your AI client
Use these steps to connect Chrome MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"chrome-mcp-server-jverre": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-chrome-mcp-server-jverre"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"chrome-mcp-server-jverre": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-chrome-mcp-server-jverre"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"chrome-mcp-server-jverre": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-chrome-mcp-server-jverre"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"chrome-mcp-server-jverre": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-chrome-mcp-server-jverre"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"chrome-mcp-server-jverre": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-chrome-mcp-server-jverre"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"chrome-mcp-server-jverre": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-chrome-mcp-server-jverre"
]
}
}
}FAQ
What programming languages can be used with chrome-mcp-server?
chrome-mcp-server can be integrated with any language that can make HTTP requests.
Is chrome-mcp-server free to use?
Yes! chrome-mcp-server is open-source and free to use under the MIT license.
How can I contribute to chrome-mcp-server?
You can contribute by submitting issues or pull requests on the GitHub repository.