MCP Catalogs
Home

flutter-skill vs chrome-devtools-mcp

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

flutter-skill
by ai-dashboad
chrome-devtools-mcp
by ChromeDevTools
Stars★ 252★ 39,757
30d uses
Score5265
Official
Categories
Developer ToolsAI / LLM ToolsBrowser Automation
Browser AutomationDeveloper ToolsWeb Scraping
LanguageDartTypeScript
Last commit1 mo agothis month

flutter-skill · Summary

An AI-powered E2E testing tool for 10 platforms with 253 MCP tools, enabling testing from natural language without writing test code.

chrome-devtools-mcp · Summary

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

flutter-skill · Use cases

  • Automated E2E testing across multiple platforms using natural language prompts
  • AI-driven bug detection and autonomous exploration of applications
  • Integration with AI assistants like Claude, Cursor, and Windsurf for development testing

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

flutter-skill · Install

Installation

  1. **Install flutter-skill CLI:**
npm install -g flutter-skill
  1. **Add to your AI tool's MCP config (example for Claude Desktop):**
{
  "mcpServers": {
    "flutter-skill": {
      "command": "flutter-skill",
      "args": ["server"]
    }
  }
}
  1. **Add to your Flutter app** (2 lines of code):
import 'package:flutter_skill/flutter_skill.dart';

void main() {
  if (kDebugMode) FlutterSkillBinding.ensureInitialized();
  runApp(MyApp());
}

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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.