antigravity
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| antigravity_askC | 通过本机 Antigravity CLI(agy)跑一轮非交互提问并返回回答;默认续接同一会话。用的是 agy 已登录的 Google 账号额度(Antigravity / Gemini),不占用当前供应商的额度。 |
| antigravity_modelsB | 列出当前 agy 账号可用的 Antigravity 模型。 |
| antigravity_agentsB | 列出当前 agy 账号可用的 agent。 |
| antigravity_sessionsB | 查看或遗忘本服务器跟踪的 Antigravity 会话,并列出 CLI 本地已有的会话。 |
| antigravity_quotaA | 查看 Antigravity 剩余额度(按模型组的周窗口与 5 小时窗口)。由 CLI 自身回答:不起 turn、不扣额度。 |
| antigravity_submitA | 在后台启动一轮 Antigravity 作业并立刻返回 job id。长作业(深度分析、长文档)用它避免阻塞;之后用 antigravity_job 取结果。参数与 antigravity_ask 相同。 |
| antigravity_jobB | 查询、列出或清理由 antigravity_submit 启动的后台作业。 |
| antigravity_statusA | 报告 agy 路径、CLI 版本、工作目录、代理可见性、当日调用与 token、耗时统计与登录探测;排查故障先看它。 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Each tool targets a distinct concern: job lifecycle, status, ask, models, agents, sessions, quota, and submit. antigravity_ask and antigravity_submit share parameters but are clearly differentiated by synchronous vs background execution, so confusion is unlikely.
All tools use the antigravity_ prefix with lowercase snake_case verbs/nouns, forming a consistent pattern. Minor deviation: antigravity_job is a noun rather than a verb like the others, but it still fits the overall scheme.
8 tools is well-scoped for an Antigravity CLI wrapper: status, ask, submit, job management, models, agents, sessions, and quota cover the core surface without redundancy or bloat.
The set covers the main workflows: interactive ask, background submit, job retrieval/cleanup, model/agent discovery, session management, and quota checking. A minor gap is the lack of an explicit cancel operation for running jobs, but antigravity_job's cleanup role partially mitigates this.