mcp-server-chart vs mcpm
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcpm by MCP-Club | |
|---|---|---|
| Stars | ★ 4,068 | ★ 108 |
| 30d uses | 10,239 | — |
| Score | 84 | 41 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsProductivityAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 17 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcpm · Summary
A command-line tool for managing MCP servers in Claude App with package discovery and server control 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
mcpm · Use cases
- Managing multiple MCP servers in Claude App without manual configuration
- Discovering and installing new MCP packages from the community registry
- Controlling server status without having to manually edit configuration files
- Using MCPM as a meta-server to manage other MCP servers
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"]
}
}
}mcpm · Install
Installation
npm install -g @mcpm/cliUsage as MCP Server
To add MCPM as an MCP server to Claude App:
mcpm add --selfAlternatively, you can manually add it by editing Claude's configuration file:
{
"mcpServers": {
"mcpm": {
"command": "mcpm",
"args": ["mcp"]
}
}
}