mcp-server-chart vs mcp-starter-template
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-starter-template by Git-Fg | |
|---|---|---|
| Stars | ★ 4,068 | ★ 0 |
| 30d uses | 10,239 | — |
| Score | 84 | 36 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| 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-starter-template · Summary
A TypeScript template for creating autonomous MCP servers with tools-first architecture.
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-starter-template · Use cases
- Scaffolding new MCP servers rapidly with proper tool definitions
- Creating autonomous agent capabilities that require well-described tools
- Building MCP servers that need runtime enabling/disabling of capabilities
- Developing tools with comprehensive metadata for agent orchestration
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-starter-template · Install
Installation
- **Clone the repository**
git clone https://github.com/Git-Fg/mcp-starter-template.git
cd mcp-starter-template- **Install dependencies**
pnpm install- **Build the server**
pnpm run build- **Run tests**
pnpm testClaude Desktop Integration
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"mcp-starter-template": {
"command": "node",
"args": ["dist/index.js"]
}
}
}