MCP Catalogs
Home

mcpx vs mcp-server-chart

Side-by-side comparison to help you pick between these two MCP servers.

mcpx
by AIGC-Hackers
mcp-server-chart
by antvis
Stars★ 20★ 4,068
30d uses10,239
Score4384
Official
Categories
Developer ToolsProductivityAI / LLM Tools
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

mcpx · Summary

A command-line tool that exposes remote MCP servers as agent-friendly commands with OAuth support and schema discovery.

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

mcpx · Use cases

  • Automating workflows by calling MCP server tools through CLI commands
  • Integrating multiple MCP servers into a single command interface for AI agents
  • Managing and authenticating access to various MCP servers from a single registry

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

mcpx · Install

Install

Install the latest release:

curl -fsSL https://raw.githubusercontent.com/AIGC-Hackers/mcpx/main/install.sh | bash

By default, the installer downloads the executable JS bundle from GitHub Releases and installs it to ~/.local/bin/mcpx.

Set MCPX_INSTALL_DIR to choose another install directory.

Claude Desktop Integration

Add to Claude Desktop configuration:

{
  "mcpServers": {
    "mcpx": {
      "command": "mcpx",
      "args": []
    }
  }
}

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.