Automate Make (Integromat) tasks via Rube MCP (Composio): operations, enums, language and timezone lookups. Always search tools first for current schemas.
Add this skill
npx mdskills install sickn33/make-automationComprehensive Make automation skill with clear workflows, pitfall guidance, and alternative approaches
1---2name: make-automation3description: "Automate Make (Integromat) tasks via Rube MCP (Composio): operations, enums, language and timezone lookups. Always search tools first for current schemas."4requires:5 mcp: [rube]6---78# Make Automation via Rube MCP910Automate Make (formerly Integromat) operations through Composio's Make toolkit via Rube MCP.1112## Prerequisites1314- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)15- Active Make connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `make`16- Always call `RUBE_SEARCH_TOOLS` first to get current tool schemas1718## Setup1920**Get Rube MCP**: Add `https://rube.app/mcp` as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.2122231. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds242. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `make`253. If connection is not ACTIVE, follow the returned auth link to complete Make authentication264. Confirm connection status shows ACTIVE before running any workflows2728## Core Workflows2930### 1. Get Operations Data3132**When to use**: User wants to retrieve operation logs or usage data from Make scenarios3334**Tool sequence**:351. `MAKE_GET_OPERATIONS` - Retrieve operation records [Required]3637**Key parameters**:38- Check current schema via RUBE_SEARCH_TOOLS for available filters39- May include date range, scenario ID, or status filters4041**Pitfalls**:42- Operations data may be paginated; check for pagination tokens43- Date filters must match expected format from schema44- Large result sets should be filtered by date range or scenario4546### 2. List Available Languages4748**When to use**: User wants to see supported languages for Make scenarios or interfaces4950**Tool sequence**:511. `MAKE_LIST_ENUMS_LANGUAGES` - Get all supported language codes [Required]5253**Key parameters**:54- No required parameters; returns complete language list5556**Pitfalls**:57- Language codes follow standard locale format (e.g., 'en', 'fr', 'de')58- List is static and rarely changes; cache results when possible5960### 3. List Available Timezones6162**When to use**: User wants to see supported timezones for scheduling Make scenarios6364**Tool sequence**:651. `MAKE_LIST_ENUMS_TIMEZONES` - Get all supported timezone identifiers [Required]6667**Key parameters**:68- No required parameters; returns complete timezone list6970**Pitfalls**:71- Timezone identifiers use IANA format (e.g., 'America/New_York', 'Europe/London')72- List is static and rarely changes; cache results when possible73- Use these exact timezone strings when configuring scenario schedules7475### 4. Scenario Configuration Lookup7677**When to use**: User needs to configure scenarios with correct language and timezone values7879**Tool sequence**:801. `MAKE_LIST_ENUMS_LANGUAGES` - Get valid language codes [Required]812. `MAKE_LIST_ENUMS_TIMEZONES` - Get valid timezone identifiers [Required]8283**Key parameters**:84- No parameters needed for either call8586**Pitfalls**:87- Always verify language and timezone values against these enums before using in configuration88- Using invalid values in scenario configuration will cause errors8990## Common Patterns9192### Enum Validation9394Before configuring any Make scenario properties that accept language or timezone:95```961. Call MAKE_LIST_ENUMS_LANGUAGES or MAKE_LIST_ENUMS_TIMEZONES972. Verify the desired value exists in the returned list983. Use the exact string value from the enum list99```100101### Operations Monitoring102103```1041. Call MAKE_GET_OPERATIONS with date range filters1052. Analyze operation counts, statuses, and error rates1063. Identify failed operations for troubleshooting107```108109### Caching Strategy for Enums110111Since language and timezone lists are static:112```1131. Call MAKE_LIST_ENUMS_LANGUAGES once at workflow start1142. Store results in memory or local cache1153. Validate user inputs against cached values1164. Refresh cache only when starting a new session117```118119### Operations Analysis Workflow120121For scenario health monitoring:122```1231. Call MAKE_GET_OPERATIONS with recent date range1242. Group operations by scenario ID1253. Calculate success/failure ratios per scenario1264. Identify scenarios with high error rates1275. Report findings to user or notification channel128```129130### Integration with Other Toolkits131132Make workflows often connect to other apps. Compose multi-tool workflows:133```1341. Call RUBE_SEARCH_TOOLS to find tools for the target app1352. Connect required toolkits via RUBE_MANAGE_CONNECTIONS1363. Use Make operations data to understand workflow execution patterns1374. Execute equivalent workflows directly via individual app toolkits138```139140## Known Pitfalls141142**Limited Toolkit**:143- The Make toolkit in Composio currently has limited tools (operations, languages, timezones)144- For full scenario management (creating, editing, running scenarios), consider using Make's native API145- Always call RUBE_SEARCH_TOOLS to check for newly available tools146- The toolkit may be expanded over time; re-check periodically147148**Operations Data**:149- Operation records may have significant volume for active accounts150- Always filter by date range to avoid fetching excessive data151- Operation counts relate to Make's pricing tiers and quota usage152- Failed operations should be investigated; they may indicate scenario configuration issues153154**Response Parsing**:155- Response data may be nested under `data` key156- Enum lists return arrays of objects with code and label fields157- Operations data includes nested metadata about scenario execution158- Parse defensively with fallbacks for optional fields159160**Rate Limits**:161- Make API has rate limits per API token162- Avoid rapid repeated calls to the same endpoint163- Cache enum results (languages, timezones) as they rarely change164- Operations queries should use targeted date ranges165166**Authentication**:167- Make API uses token-based authentication168- Tokens may have different permission scopes169- Some operations data may be restricted based on token scope170- Check that the authenticated user has access to the target organization171172## Quick Reference173174| Task | Tool Slug | Key Params |175|------|-----------|------------|176| Get operations | MAKE_GET_OPERATIONS | (check schema for filters) |177| List languages | MAKE_LIST_ENUMS_LANGUAGES | (none) |178| List timezones | MAKE_LIST_ENUMS_TIMEZONES | (none) |179180## Additional Notes181182### Alternative Approaches183184Since the Make toolkit has limited tools, consider these alternatives for common Make use cases:185186| Make Use Case | Alternative Approach |187|--------------|---------------------|188| Trigger a scenario | Use Make's native webhook or API endpoint directly |189| Create a scenario | Use Make's scenario management API directly |190| Schedule execution | Use RUBE_MANAGE_RECIPE_SCHEDULE with composed workflows |191| Multi-app workflow | Compose individual toolkit tools via RUBE_MULTI_EXECUTE_TOOL |192| Data transformation | Use RUBE_REMOTE_WORKBENCH for complex processing |193194### Composing Equivalent Workflows195196Instead of relying solely on Make's toolkit, build equivalent automation directly:1971. Identify the apps involved in your Make scenario1982. Search for each app's tools via RUBE_SEARCH_TOOLS1993. Connect all required toolkits2004. Build the workflow step-by-step using individual app tools2015. Save as a recipe via RUBE_CREATE_UPDATE_RECIPE for reuse202
Full transparency — inspect the skill content before installing.