agymcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@agymcp用一句话介绍Antigravity"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
agymcp
将 Antigravity CLI (agy) 包装为 MCP Server,供 Claude Code 等支持 MCP 协议的客户端调用。
前置条件
Antigravity CLI 已安装并完成登录(
agy命令在 PATH 中可用)uv 已安装(用于 uvx 拉取运行)
Python 3.10 或更高版本
Related MCP server: antigravity-cli-mcp
安装
在 ~/.claude.json 的 mcpServers 中添加:
{
"mcpServers": {
"agy": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/leologoli/agymcp.git",
"agymcp"
],
"env": {},
"type": "stdio"
}
}
}重启 Claude Code 后生效,首次启动会自动拉取安装依赖。
工具说明
agy
调用 Antigravity CLI 执行 AI 任务,返回模型回复文本和会话 ID。
参数:
参数 | 类型 | 必填 | 说明 |
| string | ✅ | 发送给 Antigravity 的任务指令 |
| path | ✅ | 执行任务时的工作目录(workspace root) |
| string | ❌ | 续话会话 ID,为空时开启新会话 |
| bool | ❌ | 是否启用沙箱模式,默认 false |
| string | ❌ | 指定模型,留空使用默认模型 |
返回:
字段 | 说明 |
| 是否成功 |
| 会话 UUID,传入下次调用可续话 |
| 模型回复文本 |
| 失败时的错误描述 |
示例:
// 新建会话
{
"PROMPT": "用一句话介绍你自己",
"cd": "/path/to/project"
}
// 续话
{
"PROMPT": "我上一条问你什么了?",
"cd": "/path/to/project",
"SESSION_ID": "56540478-7163-4d90-a476-f2487c81aa6a"
}实现原理
以
--print模式运行agy,通过--log-file将日志写入临时文件从日志中正则提取
conversation UUID作为SESSION_ID续话时通过
--conversation <SESSION_ID>参数恢复上下文基于 MCP Python SDK 2.x 的
MCPServer实现 stdio 传输
MCP SDK 兼容性
agymcp 0.2.x 支持 MCP Python SDK 2.x(mcp>=2.0.0,<3),不再兼容 MCP 1.x。
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Official MCP server for Agentwork — delegate tasks to AI agents with human-in-the-loop
Remote MCP server for supportsheep: run AI interviews and manage support content for your blog.
Related MCP Servers
- AlicenseBqualityBmaintenanceEnables calling Google's Antigravity CLI (agy) headlessly through MCP, providing tools like agy_ask and agy_research for agents like Claude Code.243 PyPI19MIT
- AlicenseNot gradedqualityCmaintenanceMCP server wrapping the agy CLI, enabling querying, web search, and file writing through tools like ask-agy, search-web, and write-file.10 npm2MIT
- AlicenseAqualityCmaintenanceA Claude Code MCP server and skill that enables delegation of prompts to agy (Antigravity/Gemini) CLI for model queries, conversation management, authentication, and image generation.41MIT
- AlicenseNot gradedqualityCmaintenanceAn MCP server that lets Claude Code call the Google Antigravity CLI (agy) headlessly for a second opinion from a different model family, or to have agy read project files on Claude's behalf so large files never enter Claude's context window.39 npmMIT