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
Make (Integromat)
git-merge

Make (Integromat) MCP Server

Visual automation platform

automationworkflowsvisual

About

## Make (Integromat) MCP Server: Visual Workflow Automation The **Make MCP Server** connects Google Antigravity to the Make automation platform, enabling developers to trigger scenarios, manage connections, and build complex multi-step workflows with visual ease. ### Why Make MCP? - **Visual workflows** - Design automation with drag-and-drop - **1000+ apps** - Connect to over 1000 integrated applications - **Scenario control** - Trigger and manage scenarios programmatically - **Data transformation** - Built-in functions for data mapping - **Error handling** - Robust error management and retries ### Key Features #### 1. Scenario Management ```python # List scenarios scenarios = await mcp.call("make", "list_scenarios", { "folder_id": "folder_123", "is_enabled": True }) for scenario in scenarios: print(f"{scenario[\"name\"]}: {scenario[\"scheduling\"][\"type\"]}") # Enable/disable scenario await mcp.call("make", "update_scenario", { "scenario_id": 12345, "is_enabled": True }) ``` #### 2. Run Scenarios ```python # Trigger scenario execution execution = await mcp.call("make", "run_scenario", { "scenario_id": 12345, "data": { "customer_id": "cust_123", "action": "sync_contacts" } }) print(f"Execution ID: {execution[\"execution_id\"]}") # Wait for completion result = await mcp.call("make", "get_execution", { "execution_id": execution["execution_id"] }) print(f"Status: {result[\"status\"]}") ``` #### 3. Webhook Triggers ```python # Create webhook webhook = await mcp.call("make", "create_webhook", { "scenario_id": 12345, "name": "API Trigger" }) # Trigger via webhook await mcp.call("make", "trigger_webhook", { "webhook_url": webhook["url"], "data": {"event": "order_placed", "order_id": "ORD-456"} }) ``` #### 4. Connection Management ```python # List connections connections = await mcp.call("make", "list_connections", { "app": "google-sheets" }) # Create new connection conn = await mcp.call("make", "create_connection", { "app": "slack", "name": "Workspace Bot", "credentials": {"token": "xoxb-xxx"} }) ``` ### Configuration ```json { "mcpServers": { "make": { "command": "npx", "args": ["-y", "@anthropic/mcp-make"], "env": { "MAKE_API_KEY": "your-api-key", "MAKE_ZONE": "us1" } } } } ``` ### Use Cases **Data Synchronization**: Sync data between multiple platforms automatically. **Event Processing**: React to events with complex multi-step workflows. **Report Generation**: Automate report creation and distribution. **Integration Hub**: Central hub for all business integrations. The Make MCP Server enables visual workflow automation from code.

Installation

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

How to Use

  1. 1Sign up at make.com
  2. 2Generate API key
  3. 3Build visual 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