MCP Catalogs
Home

mcp-server-chart vs deno-mcp-template

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
deno-mcp-template
by phughesmcr
Stars★ 4,068★ 30
30d uses10,239
Score8446
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsOps & InfraAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis month1 mo ago

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

deno-mcp-template · Summary

Comprehensive TypeScript template for building production MCP servers with Deno, supporting multiple distribution formats.

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

deno-mcp-template · Use cases

  • Rapid prototyping of MCP servers with security and infrastructure already implemented
  • Creating MCP servers that need to be distributed as binaries, packages, or cloud-hosted services
  • Building MCP servers with sandboxed execution capabilities for untrusted code

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"]
    }
  }
}

deno-mcp-template · Install

Installation

  1. Install Deno (if needed):
curl -fsSL https://deno.land/install.sh | sh
  1. Create your project from template:
gh repo create my-mcp-server --template phughesmcr/deno-mcp-template
cd my-mcp-server
  1. Run setup (renames placeholders, then self-destructs):
deno task setup
  1. Start the server:
deno task start

Claude Desktop Configuration

Add to your Claude Desktop config.json:

{
  "mcpServers": {
    "my-mcp-server": {
      "command": "deno",
      "args": ["run", "-A", "/absolute/path/to/main.ts"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.