mcp-server-chart vs mcp-oauth2.1-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-oauth2.1-server by QuantGeekDev | |
|---|---|---|
| Stars | ★ 4,068 | ★ 8 |
| 30d uses | 10,239 | — |
| Score | 84 | 35 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 12 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-oauth2.1-server · Summary
Reference MCP server implementing OAuth 2.1 authorization for secure access control.
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-oauth2.1-server · Use cases
- Securing MCP server access in enterprise environments
- Implementing authorization for MCP tools in client applications
- Creating authentication flow for MCP resources requiring access control
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-oauth2.1-server · Install
Installation
- Clone the repository
- Install dependencies:
``bash npm install ``
- Build the server:
``bash npm run build ``
- Start the server:
``bash npm run start ``
Configuration
Configure your authentication provider (Cognito or Keycloak) in the config folder and set environment variables in .envs.
For Claude Desktop, add to mcp.json:
{
"mcpServers": {
"oauth2-mcp": {
"command": "node",
"args": ["path/to/your/built/server.js"]
}
}
}