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
Peekaboo macOS MCP Server
eye

Peekaboo macOS MCP Server MCP Server

macOS screen capture and UI automation

macosscreenshotautomationgui

About

## Peekaboo MCP Server: macOS System Control The **Peekaboo MCP Server** provides deep macOS integration for Google Antigravity, enabling developers to access system information, control applications, and automate macOS-specific tasks. ### Why Peekaboo MCP? - **System access** - Access macOS system information - **App control** - Control macOS applications - **File operations** - macOS-native file management - **Clipboard** - Read and write clipboard contents - **Notifications** - Send native macOS notifications ### Key Features #### 1. System Information ```python # Get system info info = await mcp.call("peekaboo", "get_system_info", {}) print(f"macOS: {info[\"os_version\"]}") print(f"Model: {info[\"model\"]}") print(f"Memory: {info[\"memory_gb\"]}GB") print(f"CPU: {info[\"cpu\"]}") # Get disk usage disks = await mcp.call("peekaboo", "get_disk_usage", {}) for disk in disks: print(f"{disk[\"name\"]}: {disk[\"used_percent\"]}% used") ``` #### 2. Application Control ```python # List running applications apps = await mcp.call("peekaboo", "list_applications", { "running_only": True }) for app in apps: print(f"{app[\"name\"]}: PID {app[\"pid\"]}") # Launch application await mcp.call("peekaboo", "launch_app", { "app_name": "Safari" }) # Focus application await mcp.call("peekaboo", "focus_app", { "app_name": "Visual Studio Code" }) ``` #### 3. Clipboard Operations ```python # Get clipboard content clipboard = await mcp.call("peekaboo", "get_clipboard", {}) print(f"Text: {clipboard[\"text\"]}") # Set clipboard await mcp.call("peekaboo", "set_clipboard", { "text": "Copied from Antigravity" }) ``` #### 4. Notifications ```python # Send notification await mcp.call("peekaboo", "send_notification", { "title": "Build Complete", "message": "Your project has finished building", "sound": "default" }) ``` ### Configuration ```json { "mcpServers": { "peekaboo": { "command": "npx", "args": ["-y", "@anthropic/mcp-peekaboo"] } } } ``` ### Use Cases **System Monitoring**: Access real-time system metrics. **App Automation**: Control macOS applications programmatically. **Clipboard Integration**: Share data via clipboard. **Development Alerts**: Native notifications for build events. The Peekaboo MCP Server enables deep macOS integration.

Installation

Configuration
{
  "mcpServers": {
    "peekaboo": {
      "mcpServers": {
        "peekaboo": {
          "args": [
            "-y",
            "peekaboo-mcp"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1macOS 15.0+ (Sequoia) required
  2. 2Screen capture and analysis
  3. 3GUI automation workflows

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