MCP Catalogs
Home

mcp-server-chart vs mcp_flutter

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
mcp_flutter
by Arenukvern
Stars★ 4,068★ 294
30d uses10,239
Score8450
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptDart
Last committhis monththis month

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

mcp_flutter · Summary

MCP server for Flutter AI agents to inspect, interact with, and control running Flutter applications.

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

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

mcp-server-chart · Install

Installation

Install globally:

npm install -g @antv/mcp-server-chart

For 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"]
    }
  }
}

mcp_flutter · Install

Installation

  1. Install the binary:
curl -fsSL https://raw.githubusercontent.com/Arenukvern/mcp_flutter/main/install.sh | bash
  1. Add the toolkit to your Flutter app:
cd my-flutter-app
flutter-mcp-toolkit codegen-init   # adds flutter_mcp_toolkit + emits main.dart snippet
  1. Install skills for your AI agent:
flutter-mcp-toolkit init claude-code   # or: cursor | codex | cline | all
  1. Run your app:
flutter run --debug

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "flutter-mcp-toolkit": {
      "command": "flutter-mcp-toolkit",
      "args": ["server"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.