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
iMessage MCP Server
message-circle

iMessage MCP Server MCP Server

macOS iMessage integration

imessagemacosapplemessaging

About

## iMessage MCP Server: Apple Messaging The **iMessage MCP Server** provides iMessage integration for Google Antigravity on macOS. This enables sending and receiving iMessages programmatically for automation and notifications on Apple devices. ### Why iMessage MCP? iMessage reaches Apple users: - **Apple Ecosystem**: 1B+ active devices - **Rich Messages**: Tapbacks, effects, threads - **End-to-End Encrypted**: Secure by default - **Free Messaging**: No SMS costs for iMessage - **macOS Integration**: Native AppleScript access ### Key Features #### 1. Send Messages ```python import subprocess def send_imessage(recipient, message): script = """ tell application "Messages" set targetService to 1st account whose service type = iMessage set targetBuddy to participant "%s" of targetService send "%s" to targetBuddy end tell """ % (recipient, message) subprocess.run(["osascript", "-e", script]) send_imessage("+15559876543", "Deployment complete!") ``` #### 2. Read Messages ```python import sqlite3 import os db_path = os.path.expanduser("~/Library/Messages/chat.db") conn = sqlite3.connect(db_path) cursor = conn.execute(""" SELECT text, datetime(date/1000000000 + 978307200, 'unixepoch') FROM message ORDER BY date DESC LIMIT 10 """) for row in cursor: print(f"{row[1]}: {row[0]}") ``` ### Configuration ```json { "mcpServers": { "imessage": { "command": "npx", "args": ["-y", "@anthropic/mcp-imessage"], "env": { "IMESSAGE_DB_PATH": "~/Library/Messages/chat.db" } } } } ``` ### Use Cases **Personal Alerts**: Send notifications to your phone. **Team Communication**: Quick updates to Apple users. **Automation**: Scripted message workflows. The iMessage MCP Server brings Apple messaging to Antigravity.

Installation

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

How to Use

  1. 1macOS only
  2. 2Send/read messages
  3. 3Contact integration

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