MCP Catalogs
Home

chrome-devtools-mcp vs gemini-skill

Side-by-side comparison to help you pick between these two MCP servers.

chrome-devtools-mcp
by ChromeDevTools
gemini-skill
by WJZ-P
Stars★ 39,757★ 813
30d uses
Score6552
Official
Categories
Browser AutomationDeveloper ToolsWeb Scraping
AI / LLM ToolsBrowser AutomationProductivity
LanguageTypeScriptJavaScript
Last committhis month1 mo ago

chrome-devtools-mcp · Summary

Chrome DevTools MCP server lets AI coding agents control and inspect live Chrome browsers through the MCP protocol.

gemini-skill · Summary

MCP server that automates Google Gemini through browser automation for image generation, chat, and image extraction.

chrome-devtools-mcp · Use cases

  • Automated web testing and validation by AI agents
  • Performance analysis and optimization of web applications
  • Debugging web applications through AI-powered inspection

gemini-skill · Use cases

  • Generate images through text prompts in AI assistants
  • Automate multi-turn conversations with Gemini
  • Extract and download images from chat conversations automatically
  • Integrate Gemini capabilities into AI agent workflows

chrome-devtools-mcp · Install

Installation

Add the following config to your MCP client:

{
  "mcpServers": {
    "chrome-devtools": {
      "command": "npx",
      "args": ["-y", "chrome-devtools-mcp@latest"]
    }
  }
}

For basic browser tasks in headless mode:

{
  "mcpServers": {
    "chrome-devtools": {
      "command": "npx",
      "args": ["-y", "chrome-devtools-mcp@latest", "--slim", "--headless"]
    }
  }
}

gemini-skill · Install

Installation

Prerequisites

  • Node.js ≥ 18
  • Chrome/Edge/Chromium browser with Google account logged in

Steps

git clone https://github.com/WJZ-P/gemini-skill.git
cd gemini-skill
npm install

Configuration

Create a .env file in the project root with your configuration:

BROWSER_DEBUG_PORT=40821
BROWSER_HEADLESS=false
DAEMON_TTL_MS=1800000
OUTPUT_DIR=./gemini-image

Claude Desktop Configuration

Add to Claude Desktop's claude_desktop_config.json:

{
  "mcpServers": {
    "gemini": {
      "command": "node",
      "args": ["<absolute_path_to_gemini-skill>/src/mcp-server.js"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.