MCP Catalogs
Home

mcp-server-chart vs mcp-auth-proxy

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

mcp-server-chart
by antvis
mcp-auth-proxy
by sigbit
Stars★ 4,068★ 117
30d uses10,239
Score8447
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
SecurityDeveloper ToolsOps & Infra
LanguageTypeScriptGo
Last committhis monththis month

mcp-server-chart · Summary

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

mcp-auth-proxy · Summary

An OAuth 2.1 authentication proxy for MCP servers that adds security without code changes.

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

mcp-auth-proxy · Use cases

  • Securing self-hosted MCP servers with enterprise authentication
  • Adding OAuth protection to file system or other MCP servers
  • Providing centralized authentication for multiple MCP deployments

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"]
    }
  }
}

mcp-auth-proxy · Install

Installation

  1. Download the binary from the [release page](https://github.com/sigbit/mcp-auth-proxy/releases)
  1. For stdio transport:
./mcp-auth-proxy \
  --external-url https://{your-domain} \
  --tls-accept-tos \
  --password changeme \
  -- npx -y @modelcontextprotocol/server-filesystem ./
  1. For SSE/HTTP transport with URL:
./mcp-auth-proxy \
  --external-url https://{your-domain} \
  --tls-accept-tos \
  --password changeme \
  -- https://your-mcp-server/mcp
Claude Desktop Configuration

Add to your Claude Desktop config.json:

{
  "mcpServers": {
    "auth-protected-server": {
      "command": "path/to/mcp-auth-proxy",
      "args": ["--external-url", "https://your-domain", "--tls-accept-tos", "--password", "your-password", "--", "npx", "-y", "@modelcontextprotocol/server-filesystem", "/"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.