agy-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AGY_BIN_PATH | No | Absolute path to the `agy` executable. By default, the server looks for `agy` at `~/.local/bin/agy`. | ~/.local/bin/agy |
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_planC | Gera ou valida planos de arquitetura e implementação técnica utilizando o Antigravity (agy CLI) em modo de planejamento. |
| agy_validate_testsC | Analisa código de teste e de produção via Antigravity (agy CLI) para identificar asserções frágeis, casos de borda não cobertos, vazamento de estado e robustez da suíte. |
| agy_reviewB | Realiza revisão técnica aprofundada de código, diffs ou implementações via Antigravity (agy CLI), avaliando manutenibilidade, segurança, performance e possíveis bugs. |
| agy_execC | Executa comandos genéricos ou consultas arbitrárias via Antigravity (agy CLI) com suporte a modelos Google Gemini. |
| agy_commandB | Executa literalmente um comando direto do Antigravity CLI, como /usage, sem pedir ao modelo para interpretar ou reformular a instrução. |
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 5 tools
Most tools target distinct tasks: agy_plan for planning, agy_review for code review, and agy_validate_tests for test analysis are clearly separable. The main ambiguity is between agy_exec and agy_command, which both execute commands via the CLI; the descriptions distinguish model-interpreted vs. literal execution, but the boundary is subtle enough to risk occasional misselection.
All tools share the predictable agy_ prefix and snake_case, which helps grouping. However, the suffixes mix conventions: agy_plan and agy_command are noun-like, while agy_validate_tests and agy_review are verb phrases, and agy_exec is an abbreviation, so there is no single consistent verb_noun pattern.
Five tools is a well-scoped set for an Antigravity CLI wrapper, covering planning, review, test validation, generic execution, and direct command invocation without redundant bulk.
The surface covers the main modes of interacting with the agy CLI: planning, code review, test analysis, generic execution, and literal command execution. Minor gaps like explicit model/config listing or session management could exist, but core workflows appear covered.