flutter-skill vs opentabs
Side-by-side comparison to help you pick between these two MCP servers.
flutter-skill by ai-dashboad | opentabs by opentabs-dev | |
|---|---|---|
| Stars | ★ 252 | ★ 579 |
| 30d uses | — | — |
| Score | 52 | 53 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsBrowser Automation | Browser AutomationDeveloper ToolsProductivity |
| Language | Dart | TypeScript |
| Last commit | 1 mo ago | this 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.
opentabs · Summary
Browser automation server that authenticates with web APIs through browser sessions, exposing 100+ plugins with ~2,000 tools.
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
opentabs · Use cases
- Automating tasks across multiple web services without API keys
- Building custom AI agents that interact with web applications
- Creating workflows that integrate authenticated API calls
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());
}opentabs · Install
# Install CLI globally
npm install -g @opentabs-dev/cli
# Start the server
opentabs start- Go to
chrome://extensions/in Chrome (enable Developer mode) - Load the extension from
~/.opentabs/extension(Load unpacked)
For Claude Desktop, add this to your claude_desktop_config.json:
{
"mcpServers": {
"opentabs": {
"command": "npx",
"args": ["@opentabs-dev/cli", "mcp"]
}
}
}