MCP Catalogs
Home

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 uses10,239
Score4784
Official
Categories
Developer ToolsProductivityOther
AI / LLM ToolsDeveloper ToolsProductivity
LanguageJavaScriptTypeScript
Last commit1 mo agothis 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 --mcp

Add 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 | bash

mcp-server-chart · Install

Installation

Install globally:

npm install -g @antv/mcp-server-chart

For 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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.