forms
Jotform MCP Integration for OpenAI Agents SDK
Connect Jotform to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Jotform 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.
Jotform MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-jotform": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=jotform",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=jotform --write=deny Why Use KosmoKrator Here
Expose only Jotform 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.
Jotform Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Jotform integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__jotform__jotform_list_forms | jotform.jotform_list_forms | Read | List all forms owned by the authenticated Jotform user. Returns form IDs, titles, creation dates, and status. Supports pagination and filtering. |
integration__jotform__jotform_get_form | jotform.jotform_get_form | Read | Get detailed information about a specific Jotform form, including its properties, status, URL, and creation date. |
integration__jotform__jotform_list_submissions | jotform.jotform_list_submissions | Read | List submissions for a specific Jotform form. Returns submission IDs, timestamps, and answers. Supports pagination, filtering by date, and ordering. |
integration__jotform__jotform_get_submission | jotform.jotform_get_submission | Read | Get detailed information about a specific Jotform submission, including all form answers, metadata, and timestamps. |
integration__jotform__jotform_create_form | jotform.jotform_create_form | Write | Create a new form in Jotform. Provide form properties such as title, questions (fields), and other settings. Returns the created form with its ID and URL. |
integration__jotform__jotform_list_questions | jotform.jotform_list_questions | Read | List all questions (form fields) for a specific Jotform form. Returns field types, labels, names, and configuration options. |
integration__jotform__jotform_get_current_user | jotform.jotform_get_current_user | Read | Get profile information for the currently authenticated Jotform user, including username, email, account type, and usage stats. |