Visual automation platform
## 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.
{
"mcpServers": {
"make": {
"mcpServers": {
"make": {
"env": {
"MAKE_API_KEY": "your-api-key"
},
"args": [
"-y",
"make-mcp-server"
],
"command": "npx"
}
}
}
}
}