Antigravity Mobile Command MCP Server
Allows sending coding tasks from a mobile device via Telegram, with interactive approval of plans and code changes, real-time progress updates, error notifications, and visual verification through screenshots and recordings.
Click on "Install 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., "@Antigravity Mobile Command MCP Serversend a new coding task to build a login page"
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.
🚀 Antigravity Mobile Command
Transform your mobile device into a remote Mission Control for your coding environment.
Antigravity Mobile Command is an "Agentic Bridge" that leverages Google Antigravity's native Model Context Protocol (MCP) and Artifact system to provide a bi-directional, real-time feedback loop via Telegram.

✨ Features
📱 Prompt-to-Action Loop: Send coding tasks from your phone, approve plans with inline buttons
📸 Visual Verification: Auto-receive screenshots and recordings of UI changes
✅ Interactive Governance: Approve or reject code diffs via Telegram buttons
🚨 Error Awareness: Get notified of terminal crashes with full stack traces
📊 Live Status Ticker: Real-time progress updates without message spam
Related MCP server: Codex MCP Telegram
🛠️ Quick Start
Prerequisites
Python 3.10+
A Telegram Bot Token (from @BotFather)
Your Telegram Chat ID (from @userinfobot)
Installation
# Clone the repository
git clone https://github.com/yourusername/antigravity-telegram.git
cd antigravity-telegram
# Install dependencies
pip install -e .
# Or with uv
uv pip install -e .Configuration
Copy the example environment file:
cp .env.example .envEdit
.envwith your credentials:
TELEGRAM_BOT_TOKEN=your_bot_token_from_botfather
AUTHORIZED_CHAT_IDS=your_chat_id
ARTIFACTS_PATH=~/.gemini/antigravity/artifactsRunning
Run both Telegram bot and MCP server:
python -m src.mainRun only the Telegram bot:
python -m src.main --mode botRun only the MCP server (for Antigravity integration):
python -m src.main --mode mcp🔌 Antigravity MCP Integration
1. Add to MCP Config
Add the Telegram bridge to your Antigravity MCP configuration (~/.gemini/mcp_config.json):
{
"mcpServers": {
"telegram-bridge": {
"command": "python",
"args": ["-m", "src.main", "--mode", "mcp"],
"cwd": "/path/to/antigravity-telegram",
"env": {
"TELEGRAM_BOT_TOKEN": "your_token",
"AUTHORIZED_CHAT_IDS": "your_chat_id",
"ARTIFACTS_PATH": "~/.gemini/antigravity/artifacts"
}
}
}
}2. Copy the Workflow
Copy the workflow file to your Antigravity workflows:
cp workflows/mobile-command.md ~/.agent/workflows/3. Use from Telegram
Start a chat with your bot on Telegram
Send
/startto verify the connectionSend
/prompt "Your coding task here"Approve plans and review changes from your phone!
📱 Telegram Commands
Command | Description |
| Show welcome message and verify connection |
| Send a coding task to Antigravity |
| Check current execution status |
| Cancel the current operation |
| Show help message |
🔧 MCP Tools Available
The following tools are exposed to Antigravity for communication:
Tool | Description |
| Send messages to the user |
| Request approval for implementation plans |
| Request approval for code changes |
| Send screenshots/recordings to Telegram |
| Update the status ticker message |
| Send critical error notifications |
| Wait for user input |
🏗️ Architecture
┌─────────────────┐ ┌──────────────────┐ ┌─────────────────┐
│ 📱 Telegram │◄───►│ 🌉 Python │◄───►│ 🌌 Antigravity │
│ App │ │ Bridge │ │ Agent │
└─────────────────┘ └──────────────────┘ └─────────────────┘
│
▼
┌──────────────────┐
│ 📁 Artifact │
│ Watcher │
└──────────────────┘📁 Project Structure
antigravity-telegram/
├── src/
│ ├── main.py # Entry point
│ ├── config.py # Configuration management
│ ├── bot/
│ │ ├── handlers.py # Telegram command handlers
│ │ ├── keyboards.py # Inline keyboard builders
│ │ └── message_queue.py # Async message queue
│ ├── mcp_server/
│ │ ├── server.py # MCP server implementation
│ │ ├── tools.py # MCP tool definitions
│ │ └── state.py # Approval state management
│ ├── monitors/
│ │ ├── artifacts.py # Artifact directory watcher
│ │ └── terminal.py # Terminal output monitor
│ └── utils/
│ └── formatting.py # Message formatting
├── config/
│ └── mcp_config.json # MCP config template
├── workflows/
│ └── mobile-command.md # Antigravity workflow
├── .env.example
├── pyproject.toml
└── README.md🔒 Security
Only authorized chat IDs can interact with the bot
Bot tokens are stored in environment variables
Session files are gitignored
📝 License
MIT License - see LICENSE for details.
🤝 Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Built with ❤️ for the Antigravity community
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/JacksonFuck/antigravity-telegram'
If you have feedback or need assistance with the MCP directory API, please join our Discord server