mcp-server-chart vs mcp-auth
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-auth by famma-ai | |
|---|---|---|
| Stars | ★ 4,068 | ★ 26 |
| 30d uses | 10,239 | — |
| Score | 84 | 41 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityDeveloper ToolsOps & Infra |
| Language | TypeScript | TypeScript |
| Last commit | this month | 7 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-auth · Summary
SDK for building OAuth-protected Remote MCP servers on Cloudflare Workers with pluggable auth adapters.
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 · Use cases
- Protecting MCP servers that need user-specific access controls
- Adding OAuth authentication to MCP agents deployed on Cloudflare Workers
- Implementing custom authentication flows when identity providers lack OAuth 2.1 support
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"]
}
}
}mcp-auth · Install
npm install @famma/mcp-authFor Claude Desktop integration, add to claude_desktop_config.json:
{
"mcpServers": {
"auth-protected-mcp": {
"command": "npx",
"args": ["@famma/mcp-auth"],
"env": {
"SUPABASE_URL": "your-supabase-url",
"SUPABASE_ANON_KEY": "your-supabase-key",
"PROXY_TARGET_URL": "your-mcp-server-url"
}
}
}
}