mcp-server-chart vs gen-ai-starter
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | gen-ai-starter by jbsoftware-io | |
|---|---|---|
| Stars | ★ 4,068 | ★ 3 |
| 30d uses | 10,239 | — |
| Score | 84 | 36 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsOther |
| Language | TypeScript | Python |
| 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.
gen-ai-starter · Summary
Generative AI starter with MCP integration for converting REST APIs to standardized tools.
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
gen-ai-starter · Use cases
- Building custom agentic LLM applications with RAG capabilities
- Converting existing REST API services into MCP tools for AI agents
- Developing and testing LLM applications with Streamlit web interface
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"]
}
}
}gen-ai-starter · Install
Installation
- Prerequisites:
- Docker Engine (>= 12 GB memory or >= 8 GB with Ollama executable) - Optional: Brave Search API key for web search example
- Quick start with CPU:
``bash docker compose --profile=cpu up -d ``
- Access the applications:
- Streamlit App: http://localhost:8501/ - Open WebUI: http://localhost:3000/
- For MCP server generation:
``bash npm install -g openapi-mcp-generator openapi-mcp-generator --input path/to/openapi.json --output my-mcp-server --transport streamable-http ``