mcp-server-chart vs generator
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | generator by context-hub | |
|---|---|---|
| Stars | ★ 4,068 | ★ 321 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsFile System |
| Language | TypeScript | PHP |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
generator · Summary
CTX is an MCP server providing AI access to read, write, and analyze code across projects with custom 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
generator · Use cases
- Enable AI assistants to explore, understand and modify code across multiple projects
- Automate development tasks like running tests, deployments, and code analysis
- Generate comprehensive context documents for code reviews and documentation
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"]
}
}
}generator · Install
Install CTX:
**Linux / WSL:**
curl -sSL https://raw.githubusercontent.com/context-hub/generator/main/download-latest.sh | sh**Windows:**
powershell -c "& ([ScriptBlock]::Create((irm 'https://raw.githubusercontent.com/context-hub/generator/main/download-latest.ps1'))) -AddToPath"Connect to Claude Desktop:
ctx mcp:configOr add manually to your MCP client config:
{
"mcpServers": {
"ctx": {
"command": "ctx",
"args": [
"server"
]
}
}
}