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 | — | — |
| Score | 52 | 55 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsBrowser Automation | Browser AutomationDeveloper Toolstesting |
| Language | Dart | Go |
| Last commit | 1 mo ago | 5 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
- **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());
}httprunner · Install
Installation
- Install HttpRunner v5:
go install github.com/httprunner/httprunner@latest- Start the MCP server:
hrp mcp-server- For Claude Desktop configuration, add to
claude_desktop_config.json:
{
"mcpServers": {
"httprunner": {
"command": "hrp",
"args": ["mcp-server"]
}
}
}