mcp-server-chart vs mcp-template-node
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-template-node by Rethunk-AI | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1 |
| 30d uses | 10,239 | — |
| Score | 84 | 37 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 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-template-node · Summary
TypeScript template for Node.js MCP servers with a notes management example.
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-template-node · Use cases
- Getting started quickly with MCP server development in TypeScript
- Learning MCP implementation patterns through the notes management example
- Creating new MCP servers by extending this well-documented template
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-template-node · Install
Installation
- Clone the repository:
``bash git clone https://github.com/Rethunk-Tech/mcp-template-node.git cd mcp-template-node ``
- Install dependencies:
``bash yarn install ``
- Build and run the server:
``bash yarn build yarn start ``
For Claude Desktop integration, add this to your claude_desktop_config.json:
{
"mcpServers": {
"mcp-template-node": {
"command": "node",
"args": ["path/to/mcp-template-node/build/index.js"]
}
}
}