mcp-server-chart vs mcp-klever-vm
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-klever-vm by klever-io | |
|---|---|---|
| Stars | ★ 4,068 | ★ 31 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsblockchainAI / 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.
mcp-klever-vm · Summary
MCP server for Klever blockchain smart contract development with pattern extraction and validation tools.
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
mcp-klever-vm · Use cases
- Smart contract developers needing references for Klever VM patterns and best practices
- Teams managing large collections of Klever smart contracts with validation tools
- Educational platforms teaching blockchain development using pre-loaded examples
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"]
}
}
}mcp-klever-vm · Install
Installation
Quick Start
Install and run instantly via npx — no cloning required:
npx -y @klever/mcp-serverFrom Source
- Clone the repository:
git clone https://github.com/klever-io/mcp-klever-vm.git
cd mcp-klever-vm- Install dependencies:
pnpm install- Copy environment configuration:
cp .env.example .env- Build the project:
pnpm run buildClaude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"klever-vm": {
"command": "npx",
"args": ["-y", "@klever/mcp-server"]
}
}
}