MCP Catalogs
首页

mcp-server-chart vs antigravity-workspace-template

并排对比,帮你在这两个 MCP server 之间做选择。

mcp-server-chart
by antvis
antigravity-workspace-template
by study8677
Stars★ 4,068★ 1,219
30天用量10,239
综合分8455
官方
分类
AI / LLM 工具开发者工具效率工具
开发者工具AI / LLM 工具知识库 / RAG
实现语言TypeScriptPython
最近提交本月本月

mcp-server-chart · 概述

使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。

antigravity-workspace-template · 概述

将代码库转化为可查询AI助手的智能多代理引擎,提供MCP集成支持。

mcp-server-chart · 使用场景

  • 数据分析师从数据集中创建可视化报告
  • AI 助手根据用户请求生成自定义图表
  • Web 应用通过 HTTP API 嵌入可视化功能

antigravity-workspace-template · 使用场景

  • 通过自然语言提问理解复杂代码库的结构和功能
  • 快速定位特定实现和依赖关系,加速代码审查
  • 为新开发者提供即时上下文知识,简化项目入门流程

mcp-server-chart · 安装

安装

全局安装:

npm install -g @antv/mcp-server-chart

对于桌面应用(如 Claude Desktop、VSCode):

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "npx",
      "args": ["-y", "@antv/mcp-server-chart"]
    }
  }
}

Windows 系统:

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
    }
  }
}

antigravity-workspace-template · 安装

选项A - Claude Code/Codex CLI插件安装

# Claude Code(首次会话通过SessionStart钩子自动安装Python引擎CLI)
/plugin marketplace add study8677/antigravity-workspace-template
/plugin install antigravity@antigravity
/antigravity:ag-setup            # 交互式选择LLM提供商,粘贴API密钥,生成.env
/antigravity:ag-refresh          # 直接运行ag-refresh,首次刷新自动创建.antigravity/

# Codex CLI(需手动先安装引擎;Codex钩子尚未支持)
pipx install "git+https://github.com/study8677/antigravity-workspace-template.git#subdirectory=engine"
codex plugin marketplace add study8677/antigravity-workspace-template
/ag-setup                        # 相同流程,Codex中无需antigravity:前缀

选项B - 通过pip手动安装引擎和CLI

pip install "git+https://github.com/study8677/antigravity-workspace-template.git#subdirectory=cli"
pip install "git+https://github.com/study8677/antigravity-workspace-template.git#subdirectory=engine"

cd my-project
cat > .env <<EOF
OPENAI_BASE_URL=https://your-endpoint/v1
OPENAI_API_KEY=your-key
OPENAI_MODEL=your-model
AG_ASK_TIMEOUT_SECONDS=120
EOF

ag-refresh --workspace .
ag-ask "这个项目中认证是如何工作的?"

选项C - 注册为MCP服务器

claude mcp add antigravity ag-mcp -- --workspace $(pwd)
对比内容由 README + GitHub 公开数据自动生成,定期更新。