mcp-server-chart vs trace-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | trace-mcp by nikolai-vysotskyi | |
|---|---|---|
| Stars | ★ 4,068 | ★ 71 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsKnowledge Graph |
| 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.
trace-mcp · Summary
MCP server that eliminates AI agent recomputation by building and serving cross-language dependency graphs through Model Context Protocol.
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
trace-mcp · Use cases
- Analyze impact of code changes across entire codebase
- Trace request flows from URL to rendered UI components
- Search and understand past architectural decisions
- Find usage of specific symbols across both code and documentation
- Optimize context management for AI coding assistants
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"]
}
}
}trace-mcp · Install
Install via npm:
npm install -g trace-mcpAdd to Claude Desktop config:
{
"mcpServers": {
"trace": {
"command": "trace-mcp",
"args": []
}
}
}For advanced usage, see the [official documentation](https://github.com/nikolai-vysotskyi/trace-mcp) for configuration options and desktop app download.