productivity
Make.com MCP, CLI, and Lua Integration for AI Agents
Make.com integration docs for AI agents: MCP gateway setup, Make.com CLI commands, Lua API reference, credentials, and function schemas.Make.com for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
make-com.make_com_list_scenarios | Read read | 5 | 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 read | 1 | Get detailed information about a Make.com scenario by ID, including its blueprint, scheduling, and status. |
make-com.make_com_list_executions | Read read | 4 | 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 read | 1 | 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 read | 3 | 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 read | 2 | 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 read | 0 | Get the currently authenticated Make.com user's profile, including ID, name, email, and team memberships. |