mcp-server-chart vs lunar
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | lunar by TheLunarCompany | |
|---|---|---|
| Stars | ★ 4,068 | ★ 444 |
| 30d uses | 10,239 | — |
| Score | 84 | 51 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsMonitoringSecurity |
| 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.
lunar · Summary
Lunar.dev is an API gateway for governance and security of AI agent workloads with MCP aggregation 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
lunar · Use cases
- Centralized governance and security for MCP servers in production environments
- Traffic management and optimization for AI applications using external APIs
- Consolidating multiple MCP servers into a single gateway for simplified operations
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"]
}
}
}lunar · Install
Installation
Lunar consists of two main components:
- **Lunar Proxy** (core API gateway):
``bash git clone https://github.com/TheLunarCompany/lunar.git cd lunar/proxy npm install npm start ``
- **Lunar MCPX** (MCP aggregator):
``bash cd lunar/mcpx npm install npm start ``
For Claude Desktop, add to your config.json:
"mcpServers": {
"lunar": {
"command": "node",
"args": ["path/to/lunar/mcpx/index.js"]
}
}