mcp-server-chart vs js
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | js by mcp-auth | |
|---|---|---|
| Stars | ★ 4,068 | ★ 50 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 4 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
js · Summary
A Node.js SDK providing plug-and-play authentication for MCP servers using OAuth 2.1 and other RFC standards.
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
js · Use cases
- Secure MCP servers by implementing OAuth 2.1 authentication without custom development
- Quickly integrate with existing MCP-compatible authentication providers
- Add authentication capabilities to Node.js-based MCP servers in minutes
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"]
}
}
}js · Install
npm install mcp-authFor Claude Desktop integration, add the following to your claude_desktop_config.json:
{
"mcpServers": {
"mcp-auth-example": {
"command": "node",
"args": ["path/to/your/server.js"]
}
}
}