MCP Catalogs
Home

flutter-skill vs flyto-core

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

flutter-skill
by ai-dashboad
flyto-core
by flytohub
Stars★ 252★ 270
30d uses
Score5251
Official
Categories
Developer ToolsAI / LLM ToolsBrowser Automation
Browser AutomationDeveloper ToolsWeb Scraping
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.

flyto-core · Summary

An MCP server for AI agent automation with 412 modules, execution tracing, replay functionality, and built-in recipes.

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

flyto-core · Use cases

  • Competitive intelligence gathering through automated web scraping and performance monitoring
  • Automated testing of web applications with screenshot capture and performance metrics
  • Data extraction and transformation workflows across various web sources and APIs

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

flyto-core · Install

Install

pip install flyto-core            # Core engine + CLI + MCP server
pip install flyto-core[browser]   # + browser automation (Playwright)
playwright install chromium        # one-time browser setup

MCP Configuration

Add to your MCP config:

{
  "mcpServers": {
    "flyto-core": {
      "command": "python",
      "args": ["-m", "core.mcp_server"]
    }
  }
}

Or via Claude CLI:

claude mcp add flyto-core -- python -m core.mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.