AGY MCP for Windows
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AGY_EXECUTABLE | No | Path to the Antigravity CLI executable (e.g., C:\Users\Administrator\AppData\Local\agy\bin\agy.exe). If not set, the server uses the path defined in run-agy-mcp.cmd. |
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": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| agy_promptA | 向 Antigravity AI 发送提示词并获取响应。Antigravity 是一个强大的 AI 编码助手,可以读写文件、运行命令、搜索代码库。适用于代码生成、代码审查、重构、调试等编码任务。返回结果中包含 conversation_id,可配合 agy_conversation 工具进行多轮对话。 |
| agy_conversationA | 延续一个已有的 Antigravity 对话。使用 agy_prompt 返回的 conversation_id 来继续之前的上下文。适合多轮交互场景,如迭代代码修改、追问细节等。 |
| agy_modelsA | 查询 Antigravity 可用的 AI 模型列表。 |
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 3 tools
Each tool has a distinct purpose: starting a new prompt, continuing an existing conversation via conversation_id, and listing available models. There is no meaningful overlap or ambiguity between them.
All tool names follow the consistent agy_<noun> pattern in snake_case. The naming is predictable and clearly scoped to the Antigravity domain.
Three tools are well-scoped for a focused MCP server that wraps Antigravity AI interactions. Each tool covers a necessary capability without unnecessary bloat.
The core lifecycle is covered: start a conversation, continue it, and check available models. Minor gaps exist such as no explicit conversation history listing or deletion, but these are not essential for the primary workflow.