mcp-server-chart vs hyper-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | hyper-mcp by hyper-mcp-rs | |
|---|---|---|
| Stars | ★ 4,068 | ★ 871 |
| 30d uses | 10,239 | — |
| Score | 84 | 54 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsSecurity |
| Language | TypeScript | Rust |
| 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.
hyper-mcp · Summary
A fast, secure MCP server with WebAssembly plugin support for extending AI 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
hyper-mcp · Use cases
- Extending Claude Desktop or Cursor IDE with custom AI tools
- Building secure, sandboxed AI tools for enterprise applications
- Creating portable AI capabilities that can run on edge devices or IoT
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"]
}
}
}hyper-mcp · Install
Installation
Prerequisites
- **cosign** — required for loading plugins from OCI registries
Option 1: Pre-built Binaries
Download from [GitHub Releases](https://github.com/hyper-mcp-rs/hyper-mcp/releases):
- macOS:
hyper-mcp-aarch64-apple-darwin.tar.gz - Linux:
hyper-mcp-aarch64-unknown-linux-gnu.tar.gzorhyper-mcp-x86_64-unknown-linux-gnu.tar.gz - Windows:
hyper-mcp-x86_64-pc-windows-msvc.zip
Option 2: Cargo
cargo install hyper-mcpClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"hyper-mcp": {
"command": "hyper-mcp"
}
}
}