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

Vonage MCP Server

Communication APIs

smsvoicemessaging

About

## Vonage MCP Server: Communication APIs The **Vonage MCP Server** integrates Vonage's (formerly Nexmo) communication APIs into Google Antigravity. This platform provides SMS, voice, video, and verification capabilities for global communication. ### Why Vonage MCP? Vonage offers comprehensive communication: - **Global Reach**: 200+ countries coverage - **Multi-Channel**: SMS, voice, video, chat - **Verification**: Phone number verification - **Conversation API**: Omnichannel messaging - **Enterprise**: High reliability ### Key Features #### 1. Send SMS ```python import vonage client = vonage.Client(key="api-key", secret="api-secret") sms = vonage.Sms(client) response = sms.send_message({ "from": "MyApp", "to": "1234567890", "text": "Your verification code is: 123456" }) if response["messages"][0]["status"] == "0": print("Message sent!") ``` #### 2. Voice Calls ```python voice = vonage.Voice(client) # Make outbound call response = voice.create_call({ "to": [{"type": "phone", "number": "1234567890"}], "from": {"type": "phone", "number": "0987654321"}, "ncco": [ {"action": "talk", "text": "Hello! Your order has shipped."} ] }) ``` #### 3. Verification ```python verify = vonage.Verify(client) # Start verification response = verify.start_verification( number="1234567890", brand="MyApp" ) request_id = response["request_id"] # Check code check = verify.check(request_id, code="123456") if check["status"] == "0": print("Verified!") ``` ### Configuration ```json { "mcpServers": { "vonage": { "command": "npx", "args": ["-y", "@anthropic/mcp-vonage"], "env": { "VONAGE_API_KEY": "your-api-key", "VONAGE_API_SECRET": "your-secret" } } } } ``` ### Use Cases **Two-Factor Auth**: Phone-based verification. **Voice Alerts**: Automated phone call notifications. **Global SMS**: Send SMS worldwide. The Vonage MCP Server brings communication APIs to Antigravity.

Installation

Configuration
{
  "mcpServers": {
    "vonage": {
      "mcpServers": {
        "vonage": {
          "env": {
            "VONAGE_API_KEY": "your-api-key",
            "VONAGE_API_SECRET": "your-secret"
          },
          "args": [
            "-y",
            "vonage-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Sign up at vonage.com
  2. 2Get API credentials
  3. 3Send SMS and make calls

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