productivity
IFTTT MCP Integration for OpenAI Agents SDK
Connect IFTTT to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect IFTTT 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.
IFTTT MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-ifttt": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=ifttt",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=ifttt --write=deny Why Use KosmoKrator Here
Expose only IFTTT 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.
IFTTT Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the IFTTT integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__ifttt__ifttt_list_services | ifttt.ifttt_list_services | Read | List services in IFTTT with optional filters. |
integration__ifttt__ifttt_get_service | ifttt.ifttt_get_service | Read | Get detailed information about an IFTTT service. |
integration__ifttt__ifttt_list_applets | ifttt.ifttt_list_applets | Read | List applets in IFTTT with optional filters. |
integration__ifttt__ifttt_get_applet | ifttt.ifttt_get_applet | Read | Get detailed information about an IFTTT applet. |
integration__ifttt__ifttt_list_connections | ifttt.ifttt_list_connections | Read | List connections in IFTTT with optional filters. |
integration__ifttt__ifttt_get_connection | ifttt.ifttt_get_connection | Read | Get detailed information about an IFTTT connection. |
integration__ifttt__ifttt_get_current_user | ifttt.ifttt_get_current_user | Read | Get the currently authenticated IFTTT user. |