mcp-server-chart vs maven-decoder-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | maven-decoder-mcp by salitaba | |
|---|---|---|
| Stars | ★ 4,068 | ★ 18 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsFile System |
| Language | TypeScript | Python |
| 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.
maven-decoder-mcp · Summary
An MCP server for analyzing Maven jar files, extracting source code, and resolving dependencies in Java projects.
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
maven-decoder-mcp · Use cases
- AI agents analyzing Java dependencies in Maven projects
- Decompiling compiled classes when source jars are unavailable
- Finding and resolving Maven dependency conflicts
- Extracting source code from specific Java classes or methods
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"]
}
}
}maven-decoder-mcp · Install
Installation
One-Line Install (Recommended)
curl -fsSL https://raw.githubusercontent.com/salitaba/maven-decoder-mcp/main/install.sh | bashUsing uvx
# Install uv (if not installed)
curl -Ls https://astral.sh/uv/install.sh | sh
# Ensure your shell PATH is updated
# Run the server via uvx
uvx maven-decoder-mcpUsing npm
npm install -g maven-decoder-mcp
maven-decoder-mcpDocker
docker run --rm -it \
-v ~/.m2:/home/mcpuser/.m2 \
-v $(pwd):/workspace \
ali79taba/maven-decoder-mcp:latestClaude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"maven-decoder": {
"command": "uvx",
"args": ["maven-decoder-mcp"]
}
}
}