Use the Jotform CLI from KosmoKrator to call Jotform tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.
Jotform can be configured headlessly with `kosmokrator integrations:configure jotform`.
# Install KosmoKrator first if it is not available on PATH.curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash# Configure and verify this integration.kosmokrator integrations:configure jotform --set api_key="$JOTFORM_API_KEY" --enable --read allow --write ask --jsonkosmokrator integrations:doctor jotform --jsonkosmokrator integrations:status --json
Credentials
Authentication type: API keyapi_key. Configure credentials once, then use the same stored profile from
scripts, coding CLIs, Lua code mode, and the MCP gateway.
Key
Env var
Type
Required
Label
api_key
JOTFORM_API_KEY
Secret secret
yes
API Key
url
JOTFORM_URL
URL url
no
API Base URL
Call Jotform Headlessly
Use the generic call form when another coding CLI or script needs a stable universal interface.
Every function below can be called headlessly. The generic form is stable across all integrations;
the provider shortcut is shorter but specific to Jotform.
jotform.jotform_list_forms
Read read
List all forms owned by the authenticated Jotform user. Returns form IDs, titles, creation dates, and status. Supports pagination and filtering.
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.
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.
Array of question definitions. Each question should have "type" (e.g., "control_textbox", "control_email", "control_textarea", "control_dropdown", "control_radio", "control_checkbox"), "name" (field label), and "order" (position).
properties
object
no
Additional form properties (e.g., "redirect", "thankurl", "form_pagination", "height"). Pass as an object.
jotform.jotform_list_questions
List all questions (form fields) for a specific Jotform form. Returns field types, labels, names, and configuration options.
Headless calls still follow the integration read/write permission policy. Configure read/write defaults
with integrations:configure. Add --force only for trusted automation that should bypass that policy.