ultimate_mcp_server vs antigravity-workspace-template
并排对比,帮你在这两个 MCP server 之间做选择。
ultimate_mcp_server by Dicklesworthstone | antigravity-workspace-template by study8677 | |
|---|---|---|
| Stars | ★ 149 | ★ 1,219 |
| 30天用量 | — | — |
| 综合分 | 85 | 55 |
| 官方 | — | — |
| 分类 | AI / LLM 工具浏览器自动化本地文件系统 | 开发者工具AI / LLM 工具知识库 / RAG |
| 实现语言 | Python | Python |
| 最近提交 | 2 个月前 | 本月 |
ultimate_mcp_server · 概述
一个功能全面的 MCP server,为 AI 提供多种能力:LLM 委托、浏览器自动化、文档处理和认知记忆系统。
antigravity-workspace-template · 概述
将代码库转化为可查询AI助手的智能多代理引擎,提供MCP集成支持。
ultimate_mcp_server · 使用场景
- 使用 OCR 和结构化数据提取进行复杂的文档处理和分析
- 跨多个网站进行网页自动化和研究,通过浏览器控制
- 通过模型间的智能任务分配实现成本优化的 AI 工作流
antigravity-workspace-template · 使用场景
- 通过自然语言提问理解复杂代码库的结构和功能
- 快速定位特定实现和依赖关系,加速代码审查
- 为新开发者提供即时上下文知识,简化项目入门流程
ultimate_mcp_server · 安装
安装
- 克隆仓库:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- 安装依赖:
pip install -e .- 对于 Claude Desktop 集成,添加到 claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- 运行服务器:
python -m ultimate_mcp_serverantigravity-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)