mcp-server-chart vs eclipse-chatgpt-plugin
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | eclipse-chatgpt-plugin by gradusnikov | |
|---|---|---|
| Stars | ★ 4,068 | ★ 148 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| 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.
eclipse-chatgpt-plugin · Summary
Eclipse IDE plugin exposing development environment as an MCP server for AI agents to code, build, and debug.
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
eclipse-chatgpt-plugin · Use cases
- AI assistants collaborating with developers on Java code through Eclipse IDE
- Automated refactoring and code optimization using Eclipse's internal tools
- Continuous integration workflows that build and test code via MCP server
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"]
}
}
}eclipse-chatgpt-plugin · Install
Installation
- Install AssistAI from Eclipse Marketplace or update site
- Enable the HTTP MCP Server:
- Open Window > Preferences > Assist AI > HTTP MCP Server - Check 'Enable HTTP MCP Server' - Set hostname and port (default: localhost:8124) - Generate and save authentication token
Connecting Claude Desktop
Add to Claude Desktop config:
{
"mcpServers": {
"eclipse-ide": {
"command": "npx",
"args": [
"-y", "mcp-remote", "http://localhost:8124/mcp/eclipse-ide",
"--allow-http",
"--header", "Authorization: Bearer YOUR_TOKEN"
]
}
}
}