mcp-server-chart vs code-to-tree
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | code-to-tree by micl2e2 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 83 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM Tools |
| Language | TypeScript | C |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
code-to-tree · Summary
A runtime-free MCP server converting source code to AST using tree-sitter with minimal dependencies.
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
code-to-tree · Use cases
- Code analysis and refactoring by LLMs
- Cross-language code structure comparison
- Automated documentation generation from code structure
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"]
}
}
}code-to-tree · Install
Installation
- Download the pre-built binary from the [GitHub releases page](https://github.com/micl2e2/code-to-tree/releases)
- Configure your MCP client (example for Claude Desktop):
**Windows:** ``json { "mcpServers": { "code-to-tree": { "command": "C:\\path\\to\\code-to-tree.exe" } } } ``
**macOS:** ``json { "mcpServers": { "code-to-tree": { "command": "/path/to/code-to-tree" } } } ``
- Restart your MCP client to apply the configuration