mcp_flutter vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp_flutter by Arenukvern | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 294 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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"]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything