ask antigravity for VS Code
io.github.lykhoyda/ask-antigravity
Bridge Claude with Google's Antigravity CLI (agy) for code review and second opinions
client:VS Code
transport:stdio
runtime:npm
Install ask antigravity in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ask-antigravity-timeout-ms",
"description": "ASK_ANTIGRAVITY_TIMEOUT_MS",
"password": true
},
{
"type": "promptString",
"id": "ask-antigravity-sandbox",
"description": "ASK_ANTIGRAVITY_SANDBOX",
"password": true
},
{
"type": "promptString",
"id": "gmcpt-log-level",
"description": "GMCPT_LOG_LEVEL",
"password": true
}
],
"servers": {
"ask-antigravity": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@ask-llm/antigravity-mcp"
],
"env": {
"ASK_ANTIGRAVITY_TIMEOUT_MS": "${input:ask-antigravity-timeout-ms}",
"ASK_ANTIGRAVITY_SANDBOX": "${input:ask-antigravity-sandbox}",
"GMCPT_LOG_LEVEL": "${input:gmcpt-log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs