KosmoKrator

productivity

Make.com CLI for Cron Jobs

Use the Make.com CLI for cron jobs with headless JSON commands, schema discovery, credentials, and permission controls.

7 functions 7 read 0 write API token auth

Make.com CLI for Cron Jobs

Schedule repeatable integration workflows from cron while keeping credentials in KosmoKrator config.

Use the headless CLI from cron when an operation should run without an interactive agent session. The Make.com CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.

Command Shape

# Make.com CLI for Cron Jobs
kosmokrator integrations:configure make-com --set api_token="$MAKE_COM_API_TOKEN" --enable --read allow --write ask --json
kosmo integrations:call make-com.make_com_list_scenarios '{"organization_id":"example_organization_id","team_id":"example_team_id","folder_id":"example_folder_id","limit":1,"offset":1}' --json

Discovery Before Execution

Agents and scripts can inspect Make.com docs and schemas before choosing a function.

kosmo integrations:docs make-com --json
kosmo integrations:docs make-com.make_com_list_scenarios --json
kosmo integrations:schema make-com.make_com_list_scenarios --json
kosmo integrations:search "Make.com" --json
kosmo integrations:list --json

Useful Make.com CLI Functions

FunctionTypeParametersDescription
make-com.make_com_list_scenarios Read organization_id, team_id, folder_id, limit, offset List Make.com scenarios the authenticated user has access to. Supports filtering by organization, team, or folder. Use this to discover scenario IDs needed for other tools.
make-com.make_com_get_scenario Read id Get detailed information about a Make.com scenario by ID, including its blueprint, scheduling, and status.
make-com.make_com_list_executions Read scenario_id, status, limit, offset List Make.com scenario executions (runs) with optional filters. Filter by scenario ID or execution status. Useful for monitoring scenario health and debugging failed runs.
make-com.make_com_get_execution Read id Get detailed information about a Make.com scenario execution (run) by ID, including status, duration, input/output for each module, and any errors.
make-com.make_com_list_connections Read team_id, limit, offset List Make.com connections the authenticated user has access to. Supports filtering by team. Use this to inspect connected services and their status.
make-com.make_com_list_teams Read limit, offset List Make.com teams (organizations) the authenticated user has access to. Use this to discover team IDs needed for filtering scenarios and connections.
make-com.make_com_get_current_user Read none Get the currently authenticated Make.com user's profile, including ID, name, email, and team memberships.

Automation Notes

Related Make.com CLI Pages