MCP Catalogs
Home

mcp-server-chart vs mcp.zig

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

mcp-server-chart
by antvis
mcp.zig
by muhammad-fiaz
Stars★ 4,068★ 35
30d uses10,239
Score8446
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptZig
Last committhis monththis month

mcp-server-chart · Summary

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

mcp.zig · Summary

A comprehensive MCP library for Zig that supports both server and client implementations with protocol compliance.

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.zig · Use cases

  • Building MCP servers in Zig to expose tools, resources, and prompts to AI applications
  • Creating MCP clients in Zig to connect to any MCP-compatible server
  • Developing high-performance AI integrations with Zig's safety features

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.zig · Install

Installation

Add to your project using Zig's package manager:

# Latest development branch
zig fetch --save git+https://github.com/muhammad-fiaz/mcp.zig.git

# Zig 0.16.x (recommended)
zig fetch --save https://github.com/muhammad-fiaz/mcp.zig/archive/refs/tags/0.0.4.tar.gz

Then in your build.zig:

const mcp_dep = b.dependency("mcp", .{
    .target = target,
    .optimize = optimize,
});
exe.root_module.addImport("mcp", mcp_dep.module("mcp"));

Claude Desktop Configuration

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "zig-mcp": {
      "command": "zig",
      "args": ["run", "path/to/your/server.zig"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.