time vs antigravity-workspace-template
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | antigravity-workspace-template by study8677 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1,219 |
| 30天用量 | — | — |
| 综合分 | 77 | 55 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | 开发者工具AI / LLM 工具知识库 / RAG |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 本月 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
antigravity-workspace-template · 概述
将代码库转化为可查询AI助手的智能多代理引擎,提供MCP集成支持。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
antigravity-workspace-template · 使用场景
- 通过自然语言提问理解复杂代码库的结构和功能
- 快速定位特定实现和依赖关系,加速代码审查
- 为新开发者提供即时上下文知识,简化项目入门流程
time · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}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)