mcp-server-chart vs glif-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | glif-mcp-server by glifxyz | |
|---|---|---|
| Stars | ★ 4,068 | ★ 122 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsMedia |
| Language | TypeScript | TypeScript |
| Last commit | this month | 4 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
glif-mcp-server · Summary
MCP server enabling AI workflow execution from glif.app within your LLM client.
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
glif-mcp-server · Use cases
- Creating and running AI image generation workflows directly from your LLM client
- Automating meme generation with custom prompts and parameters
- Managing and discovering AI-powered creative tools and agents
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"]
}
}
}glif-mcp-server · Install
Installation
Running via npx (recommended)
- Get your API token from https://glif.app/settings/api-tokens
- Add the server to your Claude Desktop config file (
~/Library/Application Support/Claude/claude_desktop_config.jsonon macOS):
{
"mcpServers": {
"glif": {
"command": "npx",
"args": ["-y", "@glifxyz/glif-mcp-server@latest"],
"env": {
"GLIF_API_TOKEN": "your-token-here"
}
}
}
}Running from local checkout
git clone https://github.com/glifxyz/glif-mcp-server
cd glif-mcp-server
npm install
npm run buildThen configure your MCP client with the path to the built index.js file.