MCP Catalogs
Home

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 uses10,239
Score8433
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis month3 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-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-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 start

To use with Claude Desktop:

  1. Copy claude_desktop_config.example.json to claude_desktop_config.json
  2. 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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.