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 | — | — |
| Score | 52 | 52 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsBrowser Automation | AI / LLM ToolsBrowser AutomationProductivity |
| Language | Dart | JavaScript |
| Last commit | 1 mo ago | 1 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
- **Install flutter-skill CLI:**
npm install -g flutter-skill- **Add to your AI tool's MCP config (example for Claude Desktop):**
{
"mcpServers": {
"flutter-skill": {
"command": "flutter-skill",
"args": ["server"]
}
}
}- **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 installConfiguration
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-imageClaude 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"]
}
}
}