MCP Catalogs
Home

flutter-skill vs stealth-browser-mcp

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

flutter-skill
by ai-dashboad
stealth-browser-mcp
by vibheksoni
Stars★ 252★ 643
30d uses
Score5254
Official
Categories
Developer ToolsAI / LLM ToolsBrowser Automation
Browser AutomationWeb ScrapingDeveloper Tools
LanguageDartPython
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.

stealth-browser-mcp · Summary

Stealth Browser MCP provides undetectable browser automation with antibypass capabilities for MCP-compatible AI agents.

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

stealth-browser-mcp · Use cases

  • Automating web scraping on protected websites with antibot measures
  • Creating UI clones of websites through AI chat commands
  • Intercepting and modifying network traffic in real-time

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());
}

stealth-browser-mcp · Install

# Clone and install
git clone https://github.com/vibheksoni/stealth-browser-mcp.git
cd stealth-browser-mcp
python -m venv venv

# Activate virtual environment
# Windows:
venv\Scripts\activate
# Mac/Linux:
source venv/bin/activate

pip install -r requirements.txt

**Claude Desktop configuration:**

{
  "mcpServers": {
    "stealth-browser-mcp": {
      "command": "/path/to/stealth-browser-mcp/venv/bin/python",
      "args": ["/path/to/stealth-browser-mcp/src/server.py"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.