mcp_flutter vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp_flutter by Arenukvern | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 294 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | File SystemDeveloper ToolsProductivity |
| Language | Dart | TypeScript |
| Last commit | this month | this month |
mcp_flutter · Summary
MCP server for Flutter AI agents to inspect, interact with, and control running Flutter applications.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp_flutter · Use cases
- AI-driven Flutter app testing and debugging
- Automated UI interaction and form filling in Flutter apps
- Visual regression testing using AI agents
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
mcp_flutter · Install
Installation
- Install the binary:
curl -fsSL https://raw.githubusercontent.com/Arenukvern/mcp_flutter/main/install.sh | bash- Add the toolkit to your Flutter app:
cd my-flutter-app
flutter-mcp-toolkit codegen-init # adds flutter_mcp_toolkit + emits main.dart snippet- Install skills for your AI agent:
flutter-mcp-toolkit init claude-code # or: cursor | codex | cline | all- Run your app:
flutter run --debugClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"flutter-mcp-toolkit": {
"command": "flutter-mcp-toolkit",
"args": ["server"]
}
}
}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.