mcp-server-chart vs mcp-server-tamplate
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-server-tamplate by gustta03 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 0 |
| 30d uses | 10,239 | — |
| Score | 84 | 33 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 3 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-server-tamplate · Summary
TypeScript template for creating MCP servers with clean architecture and example tools.
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-server-tamplate · Use cases
- Quickly start building new MCP servers without worrying about boilerplate
- Learn MCP server architecture through the provided example structure
- Create standardized tools with proper input validation using Zod
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-server-tamplate · Install
# Clone the repository
git clone https://github.com/gustta03/mcp-server-template.git
cd mcp-server-template
# Install dependencies
npm install
# Build the server
npm run build
# Run the server
npm startTo use with Claude Desktop:
- Copy
claude_desktop_config.example.jsontoclaude_desktop_config.json - Modify the path to point to your built server:
{
"mcpServers": {
"mcp-server-template": {
"command": "node",
"args": ["/absolute/path/to/your/mcp-server-template/build/main.js"]
}
}
}