Video messaging
## 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.
{
"mcpServers": {
"loom": {
"mcpServers": {
"loom": {
"env": {
"LOOM_API_KEY": "your-api-key"
},
"args": [
"-y",
"loom-mcp-server"
],
"command": "npx"
}
}
}
}
}