gm-exec vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
gm-exec by AnEntrypoint | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 122 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 47 | 84 |
| Official | — | — |
| Categories | Developer ToolsProductivityOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | JavaScript | TypeScript |
| Last commit | 1 mo ago | this month |
gm-exec · Summary
MCP server for executing code in multiple languages with background processing.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
gm-exec · Use cases
- Executing code snippets in various programming languages within MCP-enabled applications
- Running tests and build commands in isolated environments
- Background processing of long-running computational tasks
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
gm-exec · Install
Installation
Install globally:
bun install -g gm-exec
gm-exec --mcpAdd to your MCP client config:
{
"mcpServers": {
"gm-exec": {
"command": "bunx",
"args": ["gm-exec", "--mcp"]
}
}
}Requirements:
- Bun ≥ 1.0
Install Bun:
curl -fsSL https://bun.sh/install | bashmcp-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"]
}
}
}