mcp-server-chart vs whatsapp-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | whatsapp-mcp by felipeadeildo | |
|---|---|---|
| Stars | ★ 4,068 | ★ 70 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | CommunicationProductivityAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | 4 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
whatsapp-mcp · Summary
WhatsApp MCP server integrates WhatsApp conversations with AI assistants through MCP tools, enabling message reading, searching, and sending.
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
whatsapp-mcp · Use cases
- Search across all WhatsApp messages for specific people or topics
- Have AI assistants summarize or analyze conversations
- Let AI draft and send WhatsApp messages on behalf of users
- Integrate WhatsApp data into broader AI workflows
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"]
}
}
}whatsapp-mcp · Install
Docker Installation (Recommended)
- Clone and configure:
git clone https://github.com/felipeadeildo/whatsapp-mcp
cd whatsapp-mcp
cp .env.example .env
# Edit .env with your settings- Start the server:
docker compose up -d- Link WhatsApp (scan QR code from logs)
- Connect to Claude Desktop:
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"whatsapp": {
"url": "http://localhost:8080/mcp/your-secret-api-key",
"transport": "http"
}
}
}