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
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityFmaintenanceEnables remote control of AI coding assistants (Claude Code/Codex) via Telegram, allowing you to manage long-running tasks, send commands, and receive notifications from anywhere. Supports unattended mode with smart polling for up to 7 days and multi-session management.829MIT
- Flicense-qualityDmaintenanceEnables remote execution of Codex CLI commands and provides an MCP tool for AI agents to escalate questions to humans via Telegram, allowing for human-in-the-loop workflows when away from the machine.
- Alicense-qualityDmaintenanceConnects VS Code Copilot to Telegram for mobile notifications, interactive approval workflows, and remote command input. Enables users to monitor AI agents, approve sensitive operations, and provide follow-up instructions from their smartphone.MIT
- Alicense-qualityDmaintenanceEnables LLMs to send notifications and receive responses via Telegram.454MIT
Related MCP Connectors
Telegram bridge for your MCP-compatible agent. Bidirectional, no LLM in our stack.
Multi-tenant Telegram gateway for AI agents ā HTTP+stdio, 8 tools, MTProto User API
Human-in-the-loop for AI coding agents ā ask questions, get approvals via Slack.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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