MCP Catalogs
Home

chrome-devtools-mcp vs flyto-core

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

chrome-devtools-mcp
by ChromeDevTools
flyto-core
by flytohub
Stars★ 39,757★ 270
30d uses
Score6551
Official
Categories
Browser AutomationDeveloper ToolsWeb Scraping
Browser AutomationDeveloper ToolsWeb Scraping
LanguageTypeScriptPython
Last committhis monththis month

chrome-devtools-mcp · Summary

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

flyto-core · Summary

An MCP server for AI agent automation with 412 modules, execution tracing, replay functionality, and built-in recipes.

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

flyto-core · Use cases

  • Competitive intelligence gathering through automated web scraping and performance monitoring
  • Automated testing of web applications with screenshot capture and performance metrics
  • Data extraction and transformation workflows across various web sources and APIs

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"]
    }
  }
}

flyto-core · Install

Install

pip install flyto-core            # Core engine + CLI + MCP server
pip install flyto-core[browser]   # + browser automation (Playwright)
playwright install chromium        # one-time browser setup

MCP Configuration

Add to your MCP config:

{
  "mcpServers": {
    "flyto-core": {
      "command": "python",
      "args": ["-m", "core.mcp_server"]
    }
  }
}

Or via Claude CLI:

claude mcp add flyto-core -- python -m core.mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.