MCP Catalogs
Home

flutter-skill vs httprunner

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

flutter-skill
by ai-dashboad
httprunner
by httprunner
Stars★ 252★ 4,277
30d uses
Score5255
Official
Categories
Developer ToolsAI / LLM ToolsBrowser Automation
Browser AutomationDeveloper Toolstesting
LanguageDartGo
Last commit1 mo ago5 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.

httprunner · Summary

HttpRunner is an all-in-one testing framework that includes MCP server functionality for UI automation.

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

httprunner · Use cases

  • Automated UI testing for mobile applications on Android and iOS
  • Cross-platform browser automation with visual recognition
  • API testing integration with UI automation in a single framework

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

httprunner · Install

Installation

  1. Install HttpRunner v5:
go install github.com/httprunner/httprunner@latest
  1. Start the MCP server:
hrp mcp-server
  1. For Claude Desktop configuration, add to claude_desktop_config.json:
{
  "mcpServers": {
    "httprunner": {
      "command": "hrp",
      "args": ["mcp-server"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.