mcp-server-chart vs Go-High-Level-MCP-2026-Complete
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | Go-High-Level-MCP-2026-Complete by BusyBee3333 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 51 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsProductivityAI / LLM Tools |
| Language | TypeScript | TypeScript |
| 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.
Go-High-Level-MCP-2026-Complete · Summary
GoHighLevel MCP server with 834 tools across 40+ categories for CRM automation, voice AI, and marketing workflows.
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
Go-High-Level-MCP-2026-Complete · Use cases
- Automate CRM workflows including lead intake, appointment booking, and pipeline management
- Integrate marketing automation with social media, ads management, and reputation monitoring
- Build AI agents for customer service with conversation management and voice AI capabilities
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"]
}
}
}Go-High-Level-MCP-2026-Complete · Install
Installation
npm install
cp .env.example .envSet the required environment variables:
GHL_API_KEY=your_private_integration_api_key
GHL_LOCATION_ID=your_location_id
GHL_BASE_URL=https://services.leadconnectorhq.com
GHL_API_VERSION=2021-07-28Build and run:
npm run build
npm run start:stdioClaude Desktop Configuration
Add to Claude Desktop's config.json:
{
"mcpServers": {
"ghl": {
"command": "node",
"args": ["/absolute/path/to/Go-High-Level-MCP-2026-Complete/dist/server.js"],
"env": {
"GHL_API_KEY": "your_private_integration_api_key",
"GHL_LOCATION_ID": "your_location_id",
"GHL_BASE_URL": "https://services.leadconnectorhq.com",
"GHL_API_VERSION": "2021-07-28"
}
}
}
}