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
Screen Capture
camera

Screen Capture MCP Server

MCP server for screenshot capture and analysis

screenshotvisiondesktopanalysis

About

## Screen Capture MCP Server: Display Recording and Screenshots The **Screen Capture MCP Server** enables Google Antigravity to capture screens, record videos, and manage display output for documentation, testing, and monitoring purposes. ### Why Screen Capture MCP? - **Multi-display** - Capture from multiple monitors - **Video recording** - Record screen activity - **Region selection** - Capture specific areas - **Format options** - PNG, JPEG, WebP, MP4 - **Annotation** - Add annotations to captures ### Key Features #### 1. Screenshot Capture ```python # Capture full screen screenshot = await mcp.call("screen-capture", "screenshot", { "display": 0, "format": "png" }) print(f"Size: {screenshot[\"width\"]}x{screenshot[\"height\"]}") # Capture specific region region = await mcp.call("screen-capture", "screenshot_region", { "x": 100, "y": 100, "width": 800, "height": 600 }) ``` #### 2. Window Capture ```python # List windows windows = await mcp.call("screen-capture", "list_windows", {}) for win in windows: print(f"{win[\"id\"]}: {win[\"title\"]}") # Capture specific window window_shot = await mcp.call("screen-capture", "capture_window", { "window_id": windows[0]["id"] }) ``` #### 3. Video Recording ```python # Start recording recording = await mcp.call("screen-capture", "start_recording", { "display": 0, "fps": 30, "output": "/tmp/recording.mp4" }) # Stop recording await mcp.call("screen-capture", "stop_recording", { "recording_id": recording["id"] }) ``` #### 4. Annotation ```python # Capture with annotation annotated = await mcp.call("screen-capture", "annotate", { "screenshot": screenshot["data"], "annotations": [ {"type": "rectangle", "x": 100, "y": 100, "width": 200, "height": 50, "color": "red"}, {"type": "arrow", "from": [300, 300], "to": [400, 200], "color": "blue"} ] }) ``` ### Configuration ```json { "mcpServers": { "screen-capture": { "command": "npx", "args": ["-y", "@anthropic/mcp-screen-capture"] } } } ``` ### Use Cases **Documentation**: Capture screenshots for docs. **Bug Reports**: Visual bug documentation. **Video Tutorials**: Record screen tutorials. **Monitoring**: Capture for visual monitoring. The Screen Capture MCP Server enables display capture and recording.

Installation

Configuration
{
  "mcpServers": {
    "screen-capture": {
      "mcpServers": {
        "screen-capture": {
          "env": {
            "ANTHROPIC_API_KEY": "YOUR_ANTHROPIC_API_KEY"
          },
          "args": [
            "-y",
            "screen-view-mcp"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 11. Requires Anthropic API key for vision analysis
  2. 22. Capture screenshots of desktop
  3. 33. Get AI insights about screen content

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