mcp-server-chart vs EVE-EST-MCP
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | EVE-EST-MCP by kongyo2 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 2 |
| 30d uses | 10,239 | — |
| Score | 84 | 32 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | OtherDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 10 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
EVE-EST-MCP · Summary
EVE-EST-MCP is an MCP server that provides EVE Server Time and downtime calculations for EVE Online players.
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
EVE-EST-MCP · Use cases
- EVE Online players who need to track server time for fleet operations and market activities
- Bot developers who need to schedule actions based on EVE Server Time
- Community managers who need to announce events in relation to server downtime
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"]
}
}
}EVE-EST-MCP · Install
Installation
- Clone the repository:
git clone https://github.com/kongyo2/EVE-EST-MCP.git
cd EVE-EST-MCP- Install dependencies:
npm install- Start the server:
npm run startFor Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"eve-est": {
"command": "node",
"args": ["dist/index.js"],
"env": {}
}
}
}