MCP Catalogs
首页

everything vs antigravity-workspace-template

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

everything
by modelcontextprotocol
antigravity-workspace-template
by study8677
Stars★ 85,748★ 1,219
30天用量
综合分7755
官方
分类
开发者工具AI / LLM 工具其它
开发者工具AI / LLM 工具知识库 / RAG
实现语言TypeScriptPython
最近提交本月本月

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

antigravity-workspace-template · 概述

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

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

antigravity-workspace-template · 使用场景

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

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

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 公开数据自动生成,定期更新。