mcp-server-chart vs minecraft-dev-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | minecraft-dev-mcp by MCDxAI | |
|---|---|---|
| Stars | ★ 4,068 | ★ 17 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| 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.
minecraft-dev-mcp · Summary
MCP server providing 20 tools for Minecraft mod development including decompilation, mapping, and source code analysis.
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
minecraft-dev-mcp · Use cases
- Automatically decompile Minecraft source code for a specific version and retrieve Java source for any class
- Analyze third-party mod JARs to extract metadata, dependencies, and entry points
- Validate Mixin code against Minecraft source to catch errors before runtime
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"]
}
}
}minecraft-dev-mcp · Install
Installation
**NPM (Recommended)**
npm install -g @mcdxai/minecraft-dev-mcp**NPX (No Install)** Use npx -y @mcdxai/minecraft-dev-mcp directly in config.
**Prerequisites**: Node.js 18+ and Java 17+
Claude Desktop Configuration
Add to your Claude Desktop configuration file:
{
"mcpServers": {
"minecraft-dev": {
"command": "minecraft-dev-mcp"
}
}
}Claude Code Configuration
Add to .claude/settings.local.json in your project:
{
"mcpServers": {
"minecraft-dev": {
"command": "minecraft-dev-mcp"
}
}
}