productivity
Typeform MCP Integration for OpenAI Agents SDK
Connect Typeform to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Typeform 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.
Typeform MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-typeform": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=typeform",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=typeform --write=deny Why Use KosmoKrator Here
Expose only Typeform 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.
Typeform Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Typeform integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__typeform__typeform_list_forms | typeform.typeform_list_forms | Read | List Typeform forms with optional search and filtering by workspace. |
integration__typeform__typeform_get_form | typeform.typeform_get_form | Read | Get details of a specific Typeform form including its fields and settings. |
integration__typeform__typeform_list_responses | typeform.typeform_list_responses | Read | List responses for a Typeform form with filtering by date, completion status, and search. |
integration__typeform__typeform_get_response | typeform.typeform_get_response | Read | Get a single Typeform response by ID, including answers and metadata. |
integration__typeform__typeform_delete_response | typeform.typeform_delete_response | Write | Delete a Typeform response permanently. |
integration__typeform__typeform_list_workspaces | typeform.typeform_list_workspaces | Read | List Typeform workspaces with optional search. |
integration__typeform__typeform_get_workspace | typeform.typeform_get_workspace | Read | Get details of a specific Typeform workspace. |
integration__typeform__typeform_create_webhook | typeform.typeform_create_webhook | Write | Create or update a webhook for a Typeform form to receive response notifications. |
integration__typeform__typeform_list_webhooks | typeform.typeform_list_webhooks | Read | List all webhooks configured for a Typeform form. |
integration__typeform__typeform_delete_webhook | typeform.typeform_delete_webhook | Write | Delete a webhook from a Typeform form. |