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 uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsOps & InfraAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 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-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"]
}
}
}deno-mcp-template · Install
Installation
- Install Deno (if needed):
curl -fsSL https://deno.land/install.sh | sh- Create your project from template:
gh repo create my-mcp-server --template phughesmcr/deno-mcp-template
cd my-mcp-server- Run setup (renames placeholders, then self-destructs):
deno task setup- Start the server:
deno task startClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"my-mcp-server": {
"command": "deno",
"args": ["run", "-A", "/absolute/path/to/main.ts"]
}
}
}