mcp-server-chart vs forgemax
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | forgemax by postrv | |
|---|---|---|
| Stars | ★ 4,068 | ★ 148 |
| 30d uses | 10,239 | — |
| Score | 84 | 51 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | Rust |
| 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.
forgemax · Summary
Forgermax is an innovative MCP gateway that collapses multiple servers into just 2 tools using sandboxed JavaScript execution.
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
forgemax · Use cases
- Large-scale MCP deployment where context window optimization is critical
- Complex tool orchestration requiring multi-hop tool calls with minimal overhead
- Security-sensitive environments requiring isolated tool execution
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"]
}
}
}forgemax · Install
Install Forgemax
**npm (recommended):**
npm install -g forgemax**Homebrew (macOS/Linux):**
brew tap postrv/forgemax && brew install forgemax**Shell installer (macOS/Linux):**
curl -fsSL https://raw.githubusercontent.com/postrv/forgemax/main/install.sh | bash**PowerShell (Windows):**
irm https://raw.githubusercontent.com/postrv/forgemax/main/install.ps1 | iex**Claude Desktop Integration:** Add to claude_desktop_config.json:
{
"mcpServers": {
"forgemax": {
"command": "forgemax"
}
}
}