MCP Catalogs
Home

flutter-skill vs gemini-skill

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

flutter-skill
by ai-dashboad
gemini-skill
by WJZ-P
Stars★ 252★ 813
30d uses
Score5252
Official
Categories
Developer ToolsAI / LLM ToolsBrowser Automation
AI / LLM ToolsBrowser AutomationProductivity
LanguageDartJavaScript
Last commit1 mo ago1 mo ago

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.

gemini-skill · Summary

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

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

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

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

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.