time vs antigravity-workspace-template
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | antigravity-workspace-template by study8677 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1,219 |
| 30d uses | — | — |
| Score | 77 | 55 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsKnowledge Graph |
| Language | TypeScript | Python |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
antigravity-workspace-template · Summary
Multi-agent knowledge engine that turns any codebase into a queryable AI assistant with MCP integration.
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
antigravity-workspace-template · Use cases
- Understanding complex codebases by asking natural language questions about code structure and functionality
- Accelerating code reviews by quickly locating specific implementations and dependencies
- Onboarding new developers to existing projects with instant access to contextual knowledge
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}antigravity-workspace-template · Install
Option A — Plugin install for Claude Code / Codex CLI
# Claude Code (auto-installs the Python engine CLI on first session via SessionStart hook)
/plugin marketplace add study8677/antigravity-workspace-template
/plugin install antigravity@antigravity
/antigravity:ag-setup # interactive: pick LLM provider, paste API key, writes .env
/antigravity:ag-refresh # runs ag-refresh directly; first refresh auto-creates .antigravity/
# Codex CLI (install the engine manually first; Codex hooks are not yet supported)
pipx install "git+https://github.com/study8677/antigravity-workspace-template.git#subdirectory=engine"
codex plugin marketplace add study8677/antigravity-workspace-template
/ag-setup # same flow, no antigravity: prefix in CodexOption B — Manual install: engine + CLI via pip
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 "How does auth work in this project?"Option C — Register as MCP server
claude mcp add antigravity ag-mcp -- --workspace $(pwd)