mcp-server-chart vs remote-mcp-server-authless-andor
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | remote-mcp-server-authless-andor by elizabethsiegle | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1 |
| 30d uses | 10,239 | — |
| Score | 84 | 28 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Web ScrapingBrowser AutomationAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 13 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
remote-mcp-server-authless-andor · Summary
Remote MCP server for web scraping using Cloudflare Browser Rendering and Workers AI, with no authentication required.
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
remote-mcp-server-authless-andor · Use cases
- Extracting content from websites that require browser rendering
- Creating custom AI-powered web scraping tools
- Building remote MCP services without authentication infrastructure
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"]
}
}
}remote-mcp-server-authless-andor · Install
Installation
- Deploy to Cloudflare Workers using the button below:
[](https://deploy.workers.cloudflare.com/?url=https://github.com/cloudflare/ai/tree/main/demos/remote-mcp-authless)
- Or use the command line to create the project locally:
npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless- Connect to Claude Desktop by adding this to your config:
{
"mcpServers": {
"calculator": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8787/sse"
]
}
}
}