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
Zoom Meeting MCP Server
video

Zoom Meeting MCP Server MCP Server

Video conferencing integration

zoommeetingsvideoconferencing

About

## Zoom MCP Server: Video Conferencing Integration The **Zoom MCP Server** integrates Zoom's video conferencing platform into Google Antigravity. This enables creating meetings, managing webinars, and automating video communication workflows programmatically. ### Why Zoom MCP? Zoom dominates video communication: - **HD Video**: High-quality video conferencing - **Scalability**: Up to 1000 participants - **Recording**: Cloud and local recording - **Breakout Rooms**: Split into smaller groups - **Webinars**: Large-scale presentations ### Key Features #### 1. Create Meetings ```python import requests headers = {"Authorization": f"Bearer {access_token}"} meeting = requests.post( "https://api.zoom.us/v2/users/me/meetings", headers=headers, json={ "topic": "Sprint Planning", "type": 2, # Scheduled meeting "start_time": "2024-03-15T10:00:00Z", "duration": 60, "settings": { "host_video": True, "participant_video": True, "waiting_room": True } } ) print(f"Join URL: {meeting.json()['join_url']}") ``` #### 2. Meeting Management ```python # List upcoming meetings meetings = requests.get( "https://api.zoom.us/v2/users/me/meetings", headers=headers ) # Get meeting details meeting = requests.get( f"https://api.zoom.us/v2/meetings/{meeting_id}", headers=headers ) # Delete meeting requests.delete( f"https://api.zoom.us/v2/meetings/{meeting_id}", headers=headers ) ``` #### 3. Recordings ```python # Get meeting recordings recordings = requests.get( f"https://api.zoom.us/v2/meetings/{meeting_id}/recordings", headers=headers ) for file in recordings.json()["recording_files"]: print(f"Recording: {file['download_url']}") ``` ### Configuration ```json { "mcpServers": { "zoom": { "command": "npx", "args": ["-y", "@anthropic/mcp-zoom"], "env": { "ZOOM_ACCOUNT_ID": "your-account-id", "ZOOM_CLIENT_ID": "your-client-id", "ZOOM_CLIENT_SECRET": "your-secret" } } } } ``` ### Use Cases **Meeting Automation**: Schedule meetings from CI/CD. **Webinar Management**: Automate webinar creation and registration. **Recording Processing**: Auto-process meeting recordings. The Zoom MCP Server brings video conferencing to Antigravity.

Installation

Configuration
{
  "mcpServers": {
    "zoom": {
      "mcpServers": {
        "zoom": {
          "env": {
            "TLDV_API_KEY": "YOUR_API_KEY"
          },
          "args": [
            "-y",
            "tldv-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Meeting scheduling
  2. 2Recording management
  3. 3Transcription support

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