MCP Catalogs
Home

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 uses10,239
Score8436
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis month2 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-chart

For 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

  1. **Clone the repository**
git clone https://github.com/Git-Fg/mcp-starter-template.git
cd mcp-starter-template
  1. **Install dependencies**
pnpm install
  1. **Build the server**
pnpm run build
  1. **Run tests**
pnpm test

Claude Desktop Integration

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-starter-template": {
      "command": "node",
      "args": ["dist/index.js"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.