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 Voice Call MCP Server
phone

Twilio Voice Call MCP Server MCP Server

Make outbound phone calls via Twilio with AI

twiliovoicecallsspeech

About

## Twilio Voice MCP Server: Programmable Voice The **Twilio Voice MCP Server** provides voice calling capabilities from Twilio within Google Antigravity. This enables making and receiving phone calls, building IVR systems, and voice-based automation. ### Why Twilio Voice MCP? Twilio Voice powers phone automation: - **Global Calling**: 180+ countries - **Programmable IVR**: Custom call flows - **Recording**: Call recording and storage - **Transcription**: Speech to text - **SIP**: Enterprise telephony integration ### Key Features #### 1. Make Calls ```python from twilio.rest import Client client = Client(account_sid, auth_token) call = client.calls.create( twiml="<Response><Say>Hello! Your order has shipped.</Say></Response>", to="+15559876543", from_="+15551234567" ) print(f"Call SID: {call.sid}") ``` #### 2. IVR Menu ```python from twilio.twiml.voice_response import VoiceResponse, Gather @app.route("/voice", methods=["POST"]) def voice_menu(): resp = VoiceResponse() gather = Gather(num_digits=1, action="/handle-key") gather.say("Press 1 for order status. Press 2 for support.") resp.append(gather) return str(resp) @app.route("/handle-key", methods=["POST"]) def handle_key(): digit = request.form["Digits"] resp = VoiceResponse() if digit == "1": resp.say("Your order is on the way!") elif digit == "2": resp.dial("+15551234567") # Transfer to support return str(resp) ``` #### 3. Recording ```python # Record call call = client.calls.create( twiml="<Response><Record maxLength='60' action='/recording-complete'/></Response>", to="+15559876543", from_="+15551234567" ) # Get recording recordings = client.recordings.list(call_sid=call.sid) for recording in recordings: print(f"Recording URL: {recording.uri}") ``` ### Configuration ```json { "mcpServers": { "twilio-voice": { "command": "npx", "args": ["-y", "@anthropic/mcp-twilio-voice"], "env": { "TWILIO_ACCOUNT_SID": "ACxxxxx", "TWILIO_AUTH_TOKEN": "your-token", "TWILIO_PHONE_NUMBER": "+15551234567" } } } } ``` ### Use Cases **Voice Alerts**: Critical notifications via phone. **IVR Systems**: Automated phone menus. **Call Tracking**: Record and analyze calls. The Twilio Voice MCP Server brings voice calling to Antigravity.

Installation

Configuration
{
  "mcpServers": {
    "twilio-voice": {
      "mcpServers": {
        "twilio-voice": {
          "env": {
            "TWILIO_AUTH_TOKEN": "YOUR_TOKEN",
            "TWILIO_ACCOUNT_SID": "YOUR_SID",
            "TWILIO_PHONE_NUMBER": "+1234567890"
          },
          "args": [
            "-y",
            "@lukaskai/voice-call-mcp"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Get Twilio credentials from console
  2. 2Configure phone number for outbound calls
  3. 3Supports real-time speech processing

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