mcp-server-chart vs tda
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | tda by irockel | |
|---|---|---|
| Stars | ★ 4,068 | ★ 542 |
| 30d uses | 10,239 | — |
| Score | 84 | 53 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsMonitoringAI / LLM Tools |
| Language | TypeScript | Java |
| 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.
tda · Summary
TDA is a Java thread dump analyzer with MCP server capabilities for AI-powered diagnostics.
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
tda · Use cases
- AI-assisted debugging of production Java applications using thread dumps
- Automated analysis of Java performance issues and deadlock detection
- Integration with development workflows for real-time monitoring
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"]
}
}
}tda · Install
Installation
- Download the standalone JAR from the [Releases](https://github.com/irockel/tda/releases) page
- Run TDA as MCP server:
java -Djava.awt.headless=true -jar tda.jar --mcpClaude Desktop Integration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"tda": {
"command": "java",
"args": ["-Djava.awt.headless=true", "-jar", "/path/to/tda.jar", "--mcp"]
}
}
}