KosmoKrator

productivity

Make.com CLI for AI Agents

Use the Make.com CLI from KosmoKrator to call Make.com tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

7 functions 7 read 0 write API token auth

Make.com CLI Setup

Make.com can be configured headlessly with `kosmokrator integrations:configure make-com`.

# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure make-com --set api_token="$MAKE_COM_API_TOKEN" --enable --read allow --write ask --json
kosmokrator integrations:doctor make-com --json
kosmokrator integrations:status --json

Credentials

Authentication type: API token api_token. Configure credentials once, then use the same stored profile from scripts, coding CLIs, Lua code mode, and the MCP gateway.

KeyEnv varTypeRequiredLabel
api_token MAKE_COM_API_TOKEN Secret secret yes API Token

Call Make.com Headlessly

Use the generic call form when another coding CLI or script needs a stable universal interface.

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

Use the provider shortcut form for shorter human-facing commands.

kosmo integrations: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

Agent Discovery Commands

These commands return structured output for coding agents that need to inspect capabilities 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

All CLI Functions

Every function below can be called headlessly. The generic form is stable across all integrations; the provider shortcut is shorter but specific to Make.com.

make-com.make_com_list_scenarios

Read read

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.

Parameters
organization_id, team_id, folder_id, limit, offset

Generic CLI call

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

Provider shortcut

kosmo integrations: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

make-com.make_com_get_scenario

Read read

Get detailed information about a Make.com scenario by ID, including its blueprint, scheduling, and status.

Parameters
id

Generic CLI call

kosmo integrations:call make-com.make_com_get_scenario '{"id":"example_id"}' --json

Provider shortcut

kosmo integrations:make-com make_com_get_scenario '{"id":"example_id"}' --json

make-com.make_com_list_executions

Read read

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.

Parameters
scenario_id, status, limit, offset

Generic CLI call

kosmo integrations:call make-com.make_com_list_executions '{"scenario_id":"example_scenario_id","status":"example_status","limit":1,"offset":1}' --json

Provider shortcut

kosmo integrations:make-com make_com_list_executions '{"scenario_id":"example_scenario_id","status":"example_status","limit":1,"offset":1}' --json

make-com.make_com_get_execution

Read read

Get detailed information about a Make.com scenario execution (run) by ID, including status, duration, input/output for each module, and any errors.

Parameters
id

Generic CLI call

kosmo integrations:call make-com.make_com_get_execution '{"id":"example_id"}' --json

Provider shortcut

kosmo integrations:make-com make_com_get_execution '{"id":"example_id"}' --json

make-com.make_com_list_connections

Read read

List Make.com connections the authenticated user has access to. Supports filtering by team. Use this to inspect connected services and their status.

Parameters
team_id, limit, offset

Generic CLI call

kosmo integrations:call make-com.make_com_list_connections '{"team_id":"example_team_id","limit":1,"offset":1}' --json

Provider shortcut

kosmo integrations:make-com make_com_list_connections '{"team_id":"example_team_id","limit":1,"offset":1}' --json

make-com.make_com_list_teams

Read read

List Make.com teams (organizations) the authenticated user has access to. Use this to discover team IDs needed for filtering scenarios and connections.

Parameters
limit, offset

Generic CLI call

kosmo integrations:call make-com.make_com_list_teams '{"limit":1,"offset":1}' --json

Provider shortcut

kosmo integrations:make-com make_com_list_teams '{"limit":1,"offset":1}' --json

make-com.make_com_get_current_user

Read read

Get the currently authenticated Make.com user's profile, including ID, name, email, and team memberships.

Parameters
none

Generic CLI call

kosmo integrations:call make-com.make_com_get_current_user '{}' --json

Provider shortcut

kosmo integrations:make-com make_com_get_current_user '{}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

make-com.make_com_list_scenarios

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.

Operation
Read read
Schema command
kosmo integrations:schema make-com.make_com_list_scenarios --json
ParameterTypeRequiredDescription
organization_id string no Filter by organization ID.
team_id string no Filter by team ID.
folder_id string no Filter by folder ID.
limit integer no Number of results per page. Default: 20.
offset integer no Offset for pagination.

make-com.make_com_get_scenario

Get detailed information about a Make.com scenario by ID, including its blueprint, scheduling, and status.

Operation
Read read
Schema command
kosmo integrations:schema make-com.make_com_get_scenario --json
ParameterTypeRequiredDescription
id string yes Scenario ID.

make-com.make_com_list_executions

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.

Operation
Read read
Schema command
kosmo integrations:schema make-com.make_com_list_executions --json
ParameterTypeRequiredDescription
scenario_id string no Filter by scenario ID.
status string no Filter by status (e.g. "success", "error", "warning").
limit integer no Number of results per page. Default: 20.
offset integer no Offset for pagination.

make-com.make_com_get_execution

Get detailed information about a Make.com scenario execution (run) by ID, including status, duration, input/output for each module, and any errors.

Operation
Read read
Schema command
kosmo integrations:schema make-com.make_com_get_execution --json
ParameterTypeRequiredDescription
id string yes Execution (run) ID.

make-com.make_com_list_connections

List Make.com connections the authenticated user has access to. Supports filtering by team. Use this to inspect connected services and their status.

Operation
Read read
Schema command
kosmo integrations:schema make-com.make_com_list_connections --json
ParameterTypeRequiredDescription
team_id string no Filter by team ID.
limit integer no Number of results per page. Default: 20.
offset integer no Offset for pagination.

make-com.make_com_list_teams

List Make.com teams (organizations) the authenticated user has access to. Use this to discover team IDs needed for filtering scenarios and connections.

Operation
Read read
Schema command
kosmo integrations:schema make-com.make_com_list_teams --json
ParameterTypeRequiredDescription
limit integer no Number of results per page. Default: 20.
offset integer no Offset for pagination.

make-com.make_com_get_current_user

Get the currently authenticated Make.com user's profile, including ID, name, email, and team memberships.

Operation
Read read
Schema command
kosmo integrations:schema make-com.make_com_get_current_user --json
ParameterTypeRequiredDescription
No parameters.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.