productivity
Make.com MCP Integration for OpenAI Agents SDK
Connect Make.com to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Make.com to OpenAI Agents SDK
Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway.
Start the KosmoKrator MCP gateway locally and point the OpenAI Agents SDK MCP tool at that process or wrapper. The gateway is local, scoped to this integration, and starts with
--write=deny so OpenAI Agents can inspect read-capable tools without receiving write access by default.
Make.com MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-make-com": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=make-com",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=make-com --write=deny Why Use KosmoKrator Here
Expose only Make.com instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Make.com Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Make.com integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__make_com__make_com_list_scenarios | make-com.make_com_list_scenarios | 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. |
integration__make_com__make_com_get_scenario | make-com.make_com_get_scenario | Read | Get detailed information about a Make.com scenario by ID, including its blueprint, scheduling, and status. |
integration__make_com__make_com_list_executions | make-com.make_com_list_executions | 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. |
integration__make_com__make_com_get_execution | make-com.make_com_get_execution | Read | Get detailed information about a Make.com scenario execution (run) by ID, including status, duration, input/output for each module, and any errors. |
integration__make_com__make_com_list_connections | make-com.make_com_list_connections | Read | List Make.com connections the authenticated user has access to. Supports filtering by team. Use this to inspect connected services and their status. |
integration__make_com__make_com_list_teams | make-com.make_com_list_teams | Read | List Make.com teams (organizations) the authenticated user has access to. Use this to discover team IDs needed for filtering scenarios and connections. |
integration__make_com__make_com_get_current_user | make-com.make_com_get_current_user | Read | Get the currently authenticated Make.com user's profile, including ID, name, email, and team memberships. |