mcp-server-chart vs ggui
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ggui by ggui-ai | |
|---|---|---|
| Stars | ★ 4,068 | ★ 16 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| 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.
ggui · Summary
ggui is an MCP-UI protocol that generates rich interactive interfaces on demand between AI agents and humans.
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
ggui · Use cases
- AI agents creating custom UIs on-the-fly for user interaction
- Building no-code interfaces for AI-powered applications
- Replacing traditional UI development with natural language descriptions
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"]
}
}
}ggui · Install
# Install the CLI
npm install -g @ggui-ai/cli
# Create a new server
npm create ggui-server@latest my-app
cd my-app
npm install
# Start the server
npx ggui serveFor Claude Desktop, add this to your config.json:
{
"mcpServers": {
"ggui": {
"url": "http://127.0.0.1:6781/mcp",
"headers": { "Authorization": "Bearer dev" }
}
}
}