Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Telegram MCP Server
message-circle

Telegram MCP Server MCP Server

MCP server for Telegram messaging via MTProto

telegrammessagingchatmtproto

About

## Telegram MCP Server: Messaging Automation The **Telegram MCP Server** integrates Telegram's messaging platform into Google Antigravity. This enables building bots, sending notifications, and automating messaging workflows for personal and business communication. ### Why Telegram MCP? Telegram excels at automation: - **Bot API**: Powerful bot capabilities - **No Rate Limits**: High volume messaging - **Groups & Channels**: Broadcast to many users - **Rich Media**: Images, files, stickers - **Cross-Platform**: Works everywhere ### Key Features #### 1. Send Messages ```python from telegram import Bot bot = Bot(token="your-token") # Send text message await bot.send_message( chat_id=123456, text="Deployment completed! :rocket:", parse_mode="Markdown" ) # Send with buttons from telegram import InlineKeyboardButton, InlineKeyboardMarkup keyboard = [[ InlineKeyboardButton("View Logs", url="https://logs.example.com"), InlineKeyboardButton("Rollback", callback_data="rollback") ]] await bot.send_message( chat_id=chat_id, text="Deploy successful", reply_markup=InlineKeyboardMarkup(keyboard) ) ``` #### 2. Bot Commands ```python from telegram.ext import Application, CommandHandler async def status(update, context): await update.message.reply_text("All systems operational!") async def deploy(update, context): env = context.args[0] if context.args else "staging" await update.message.reply_text(f"Deploying to {env}...") app = Application.builder().token("your-token").build() app.add_handler(CommandHandler("status", status)) app.add_handler(CommandHandler("deploy", deploy)) ``` #### 3. File Sharing ```python # Send documents await bot.send_document( chat_id=chat_id, document=open("report.pdf", "rb"), caption="Weekly Report" ) # Send photos await bot.send_photo( chat_id=chat_id, photo=open("screenshot.png", "rb") ) ``` ### Configuration ```json { "mcpServers": { "telegram": { "command": "npx", "args": ["-y", "@anthropic/mcp-telegram"], "env": { "TELEGRAM_BOT_TOKEN": "your-bot-token" } } } } ``` ### Use Cases **Alert Bots**: Send monitoring alerts to team channels. **Deployment Bots**: Trigger and monitor deployments via chat. **Status Updates**: Automated status notifications. The Telegram MCP Server brings Telegram automation to Antigravity.

Installation

Configuration
{
  "mcpServers": {
    "telegram": {
      "mcpServers": {
        "telegram": {
          "env": {
            "TELEGRAM_PHONE": "+1234567890",
            "TELEGRAM_API_ID": "YOUR_API_ID",
            "TELEGRAM_API_HASH": "YOUR_API_HASH"
          },
          "args": [
            "mcp-telegram"
          ],
          "command": "uvx"
        }
      }
    }
  }
}

How to Use

  1. 1Get API ID and Hash from my.telegram.org/apps
  2. 2Configure environment variables with your credentials
  3. 3Add server config to Claude Desktop

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers