mcp-elasticsearch vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
mcp-elasticsearch by AeaZer | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 9 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 38 | 84 |
| Official | — | — |
| Categories | DatabaseSearchDeveloper Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Go | TypeScript |
| Last commit | 10 mo ago | this month |
mcp-elasticsearch · Summary
A fully-featured Elasticsearch MCP server with comprehensive search capabilities and multiple deployment options.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-elasticsearch · Use cases
- Enabling LLM assistants to query and interact with Elasticsearch data stores
- Automating data management workflows through AI tool calling
- Providing search capabilities to AI applications without requiring direct API access
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
mcp-elasticsearch · Install
Installation
Using Docker (Recommended)
docker run -d -p 8080:8080 \
-e MCP_PROTOCOL=http \
-e ES_ADDRESSES=http://your-elasticsearch:9200 \
ghcr.io/aeazer/mcp-elasticsearch:latestFrom Source
go install github.com/AeaZer/mcp-elasticsearch@latestClaude Desktop Configuration
Add to ~/.config/claude/config.json:
{
"mcpServers": {
"elasticsearch": {
"command": "mcp-elasticsearch",
"env": {
"ES_ADDRESSES": "http://localhost:9200",
"ES_VERSION": "8"
}
}
}
}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"]
}
}
}