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
Loom
video

Loom MCP Server

Video messaging

videomessagingrecording

About

## Loom MCP Server: Video Messaging The **Loom MCP Server** integrates Loom's video messaging platform into Google Antigravity. This enables creating, sharing, and managing video messages for async communication and documentation. ### Why Loom MCP? Loom transforms communication: - **Quick Recording**: Screen + webcam capture - **Instant Sharing**: Share immediately - **Engagement Analytics**: View tracking - **Transcription**: Automatic transcripts - **Integration**: Embed anywhere ### Key Features #### 1. Get Videos ```python import requests headers = {"Authorization": f"Bearer {access_token}"} # List videos response = requests.get( "https://www.loom.com/v1/videos", headers=headers ) for video in response.json()["videos"]: print(f"Title: {video['title']}") print(f"URL: {video['share_url']}") ``` #### 2. Video Details ```python # Get video details response = requests.get( f"https://www.loom.com/v1/videos/{video_id}", headers=headers ) video = response.json() print(f"Views: {video['view_count']}") print(f"Duration: {video['duration']}s") print(f"Transcript: {video['transcript']}") ``` #### 3. Share Videos ```python # Generate share link response = requests.post( f"https://www.loom.com/v1/videos/{video_id}/share", headers=headers, json={ "password_protected": False, "download_enabled": True } ) share_url = response.json()["share_url"] ``` ### Configuration ```json { "mcpServers": { "loom": { "command": "npx", "args": ["-y", "@anthropic/mcp-loom"], "env": { "LOOM_ACCESS_TOKEN": "your-access-token" } } } } ``` ### Use Cases **Code Walkthroughs**: Explain code changes visually. **Bug Reports**: Record issues with context. **Documentation**: Create video tutorials. The Loom MCP Server brings video messaging to Antigravity.

Installation

Configuration
{
  "mcpServers": {
    "loom": {
      "mcpServers": {
        "loom": {
          "env": {
            "LOOM_API_KEY": "your-api-key"
          },
          "args": [
            "-y",
            "loom-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Get Loom API key
  2. 2Configure access
  3. 3Manage video recordings

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