mcp-server-chart vs titanmind-whatsapp-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | titanmind-whatsapp-mcp by TitanmindAGI | |
|---|---|---|
| Stars | ★ 4,068 | ★ 18 |
| 30d uses | 10,239 | — |
| Score | 84 | 37 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | CommunicationAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 10 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
titanmind-whatsapp-mcp · Summary
WhatsApp marketing and messaging MCP server using Titanmind for conversation management and template-based messaging.
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
titanmind-whatsapp-mcp · Use cases
- Automated customer support through WhatsApp conversations
- Marketing campaigns using approved message templates
- Bulk messaging to customer lists with country-specific formatting
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"]
}
}
}titanmind-whatsapp-mcp · Install
Installation
Prerequisites:
- Python 3.10 or higher
- API Key and Business Code from Titanmind
Using pipx:
# Install pipx
brew install pipx # macOS
sudo apt install pipx # Ubuntu/Debian
# Install Titanmind WhatsApp MCP
pipx install titanmind-whatsapp-mcp
pipx ensurepathClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"TitanMindMCP": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.titanmind.so/whatsapp/mcp/",
"--header",
"api-key:XXXXXXXXXXXXXXXXXXXXXXX",
"--header",
"bus-code:XXXXXX"
]
}
}
}