flutter-skill vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
flutter-skill by ai-dashboad | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 252 | ★ 85,748 |
| 30d uses | — | — |
| Score | 52 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsBrowser Automation | File SystemDeveloper 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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());
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.