forms
Jotform MCP, CLI, and Lua Integration for AI Agents
Jotform integration docs for AI agents: MCP gateway setup, Jotform CLI commands, Lua API reference, credentials, and function schemas.
7 functions 6 read 1 write API key auth
Jotform for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Machine-Readable Metadata
- integration_slug
jotform- route_slug
jotform- package
jotform- auth_strategy
api_keyAPI key- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Jotform CLIHeadless setup and direct function calls. Jotform MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Jotform MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Jotform.
Claude Code Jotform MCP setup for Claude Code. Cursor Jotform MCP setup for Cursor. Codex Jotform MCP setup for Codex. OpenAI Agents Jotform MCP setup for OpenAI Agents SDK. Claude Agent SDK Jotform MCP setup for Claude Agent SDK. Vercel AI SDK Jotform MCP setup for Vercel AI SDK. LangChain Jotform MCP setup for LangChain. LangGraph Jotform MCP setup for LangGraph. CrewAI Jotform MCP setup for CrewAI. MCP clients Jotform MCP setup for Generic MCP Clients.
Jotform CLI Matrix
Use these pages for direct Jotform CLI workflows in scripts, CI, cron, and agent wrappers.
CI Jotform CLI for CI. Cron Jobs Jotform CLI for cron jobs. Shell Scripts Jotform CLI for shell scripts. Headless Automation Jotform CLI for headless automation. Coding Agents Jotform CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
jotform.jotform_list_forms | Read read | 5 | List all forms owned by the authenticated Jotform user. Returns form IDs, titles, creation dates, and status. Supports pagination and filtering. |
jotform.jotform_get_form | Read read | 1 | Get detailed information about a specific Jotform form, including its properties, status, URL, and creation date. |
jotform.jotform_list_submissions | Read read | 6 | List submissions for a specific Jotform form. Returns submission IDs, timestamps, and answers. Supports pagination, filtering by date, and ordering. |
jotform.jotform_get_submission | Read read | 1 | Get detailed information about a specific Jotform submission, including all form answers, metadata, and timestamps. |
jotform.jotform_create_form | Write write | 3 | 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. |
jotform.jotform_list_questions | Read read | 2 | List all questions (form fields) for a specific Jotform form. Returns field types, labels, names, and configuration options. |
jotform.jotform_get_current_user | Read read | 0 | Get profile information for the currently authenticated Jotform user, including username, email, account type, and usage stats. |