mcp-server-chart vs kafka-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | kafka-mcp-server by Joel-hanson | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1 |
| 30d uses | 10,239 | — |
| Score | 84 | 31 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | DatabaseDeveloper ToolsOps & Infra |
| Language | TypeScript | Python |
| Last commit | this month | 12 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
kafka-mcp-server · Summary
A MCP server enabling Kafka interaction with tools for topic management and message operations.
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
kafka-mcp-server · Use cases
- Managing Kafka topics through AI assistants
- Automating topic lifecycle operations
- Monitoring topic configuration and health
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"]
}
}
}kafka-mcp-server · Install
Installation
- Clone the repository:
git clone https://github.com/joel-hanson/kafka-mcp-server.git
cd kafka-mcp-server- Setup Python environment:
conda create -n kafka-mcp python=3.10 -y
conda activate kafka-mcp
pip install -r requirements.txt- Configure Claude Desktop:
Add this to your Claude Desktop configuration:
{
"mcpServers": {
"kafka": {
"command": "python",
"args": ["/path/to/server.py"]
}
}
}