flutter-skill vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
flutter-skill by ai-dashboad | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 252 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 52 | 84 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsBrowser Automation | AI / LLM ToolsDeveloper 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.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
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
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
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());
}mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}