mcp-server-chart vs IntelliConnect
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | IntelliConnect by ruanrongman | |
|---|---|---|
| Stars | ★ 4,068 | ★ 118 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsOps & Infraiot |
| Language | TypeScript | Java |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
IntelliConnect · Summary
An AI-powered IoT platform with MCP protocol support for smart device management and agent capabilities.
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
IntelliConnect · Use cases
- Smart home device control and automation
- Industrial IoT monitoring and management
- Voice-controlled AI assistants for specialized domains
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"]
}
}
}IntelliConnect · Install
Installation Options:
- Docker Deployment (Recommended)
cd docker
docker-compose upThis initializes MySQL, Redis, EMQX, and InfluxDB environments.
- Manual Installation
- Install Java 21 environment
- Install MySQL and Redis (InfluxDB recommended for high performance)
- Install EMQX cluster and configure exhook
- Modify application.yaml (set ddl-auto to update mode)
- Run:
java -jar IntelliConnect-1.8-SNAPSHOT.jar
Claude Desktop MCP Configuration:
{
"mcpServers": {
"intelliconnect": {
"command": "java",
"args": ["-jar", "path/to/IntelliConnect-1.8-SNAPSHOT.jar"],
"env": {}
}
}
}