mcp-server-chart vs LSP4J-MCP
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | LSP4J-MCP by stephanj | |
|---|---|---|
| Stars | ★ 4,068 | ★ 23 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM Tools |
| Language | TypeScript | Java |
| Last commit | this month | 4 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
LSP4J-MCP · Summary
Java MCP server wrapping JDTLS to provide Java IDE features like symbol search and reference finding to AI assistants.
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
LSP4J-MCP · Use cases
- AI assistants analyzing Java code structure and finding classes or methods
- Refactoring assistance by finding all references to specific code elements
- Code navigation to definitions and implementations of interfaces or methods
- Understanding large Java codebases by exploring relationships between symbols
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"]
}
}
}LSP4J-MCP · Install
Installation
Prerequisites
- Java 21+
- Maven 3.8+
- JDTLS installed (e.g., via Homebrew:
brew install jdtls)
Build
mvn clean packageThis creates a shaded JAR at target/lsp4j-mcp-1.0.0-SNAPSHOT.jar.
Claude Desktop Configuration
Add to your .claude_desktop_config.json:
{
"mcpServers": {
"java-lsp": {
"command": "java",
"args": [
"-jar",
"/path/to/LSP4J-MCP/target/lsp4j-mcp-1.0.0-SNAPSHOT.jar",
"/path/to/your/java/project",
"jdtls"
],
"env": {
"LOG_FILE": "/tmp/lsp4j-mcp.log"
}
}
}
}