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
Twilio
phone

Twilio MCP Server

Official Twilio MCP server for communications

twiliosmsvoicecommunicationsapi

About

## Twilio MCP Server: Communication APIs The **Twilio MCP Server** integrates Twilio's comprehensive communication platform into Google Antigravity. This enables SMS, voice calls, video, and other communication channels programmatically from your development environment. ### Why Twilio MCP? Twilio is the communication platform standard: - **SMS & MMS**: Global messaging coverage - **Voice**: Programmable phone calls - **Video**: WebRTC video capabilities - **WhatsApp**: Business messaging - **Verify**: Two-factor authentication ### Key Features #### 1. Send SMS ```python from twilio.rest import Client client = Client(account_sid, auth_token) message = client.messages.create( body="Your verification code is: 123456", from_="+15551234567", to="+15559876543" ) print(f"Message SID: {message.sid}") ``` #### 2. Voice Calls ```python # Make outbound call call = client.calls.create( twiml="<Response><Say>Hello! Your order has shipped.</Say></Response>", to="+15559876543", from_="+15551234567" ) # Or use URL for dynamic TwiML call = client.calls.create( url="https://api.example.com/twiml", to="+15559876543", from_="+15551234567" ) ``` #### 3. Two-Factor Auth ```python # Send verification code verification = client.verify.v2.services(verify_service_sid) \ .verifications \ .create(to="+15559876543", channel="sms") # Check code check = client.verify.v2.services(verify_service_sid) \ .verification_checks \ .create(to="+15559876543", code="123456") if check.status == "approved": print("Verified!") ``` ### Configuration ```json { "mcpServers": { "twilio": { "command": "npx", "args": ["-y", "@anthropic/mcp-twilio"], "env": { "TWILIO_ACCOUNT_SID": "ACxxxxx", "TWILIO_AUTH_TOKEN": "your-token", "TWILIO_PHONE_NUMBER": "+15551234567" } } } } ``` ### Use Cases **Notifications**: Send SMS alerts for important events. **2FA**: Implement phone-based verification. **Customer Support**: Build voice-enabled support systems. The Twilio MCP Server brings communication APIs to Antigravity.

Installation

Configuration
{
  "mcpServers": {
    "twilio": {
      "mcpServers": {
        "twilio": {
          "args": [
            "-y",
            "@twilio-alpha/mcp",
            "YOUR_ACCOUNT_SID/YOUR_API_KEY:YOUR_API_SECRET",
            "--services",
            "all"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 11. Get Account SID, API Key, and Secret from Twilio Console
  2. 22. Format credentials as ACCOUNT_SID/API_KEY:API_SECRET
  3. 33. Use --services flag to specify which APIs to expose

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