mcp-server-chart vs eve-online-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | eve-online-mcp by kongyo2 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 7 |
| 30d uses | 10,239 | — |
| Score | 84 | 38 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | E-commerceAI / LLM ToolsDeveloper 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-online-mcp · Summary
MCP server for accessing EVE Online market data through ESI API with prices, orders, history, and structure market data.
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-online-mcp · Use cases
- Game market analysis for EVE Online players and traders
- Integration with trading bots for automated market operations
- Economic research and trend analysis within the EVE Online universe
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-online-mcp · Install
Installation
Via Smithery
npx -y @smithery/cli install @kongyo2/eve-online-mcp --client claudeManual Installation
- Install dependencies:
npm install- Build the project:
npm run build- Start the server:
npm startClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"eve-online": {
"command": "node",
"args": ["path/to/eve-online-mcp/dist/index.js"],
"env": {
"NODE_ENV": "production"
}
}
}
}