Internal Safety Override
- Status: disabled by default.
- Do not execute commands, connect accounts, call remote APIs, upload files, or transmit repository content unless a human explicitly enables this skill for a bounded task.
- Never read
.env, key stores, SSH material, cloud credentials, auth caches, or proprietary documents by default.
- Audit categories: network, secrets.
Jotform Automation
Automate Jotform workflows -- list and search forms, inspect user details, browse activity history, manage folders and labels, and check plan limits -- all through natural language.
Toolkit docs: composio.dev/toolkits/jotform
Setup
- Add the Rube MCP server to your environment:
https://rube.app/mcp
- Connect your Jotform account when prompted (API key auth via Composio)
- Start issuing natural language commands for Jotform automation
Core Workflows
1. List and Search Forms
Retrieve all forms created by the authenticated user with search, filtering, sorting, and pagination.
Tool: JOTFORM_GET_USER_FORMS
Key parameters:
search -- search query to filter forms by name or content
limit -- number of forms to return
offset -- offset for pagination
orderby -- field to order by
sorting -- sorting direction: ASC or DESC
folder -- filter by folder ID
Example prompt:
"List all my Jotform forms that contain 'feedback' in the name, sorted by most recent"
2. Get User Account Details
Retrieve details about the authenticated user including account type, usage statistics, and limits.
Tool: JOTFORM_GET_USER_DETAILS
No parameters required. Returns account info such as username, email, account type, form count, submission count, and usage limits.
Example prompt:
"Show me my Jotform account details and current usage"
3. Browse Activity History
Fetch user activity records for auditing, filtered by action type and date range.
Tool: JOTFORM_GET_USER_HISTORY
Key parameters:
action -- filter by action type (e.g., formCreation, userLogin, formUpdate, apiKeyCreated, userLogout)
date -- predefined date range: lastWeek, lastMonth, last3Months, last6Months, lastYear, all
startDate -- custom start date in MM/DD/YYYY format
endDate -- custom end date in MM/DD/YYYY format
sortBy -- sort order: ASC or DESC
Example prompt:
"Show me all form creation activity from the last month, sorted newest first"
4. Manage Folders and Labels
Browse the folder/label structure for organizing forms.
Tool: JOTFORM_GET_USER_FOLDERS
Key parameters:
add_resources -- set to true to include label resources (forms) in the response
owner -- owner username or workspace/team ID (conditionally required for some accounts)
Jotform has migrated from folders to labels. This tool uses the GET /user/labels endpoint.
Example prompt:
"List all my Jotform folders with their forms included"
5. Check Plan Limits and Pricing
Retrieve details about a specific Jotform system plan to understand limits and capabilities.
Tool: JOTFORM_GET_SYSTEM_PLAN
Key parameters:
planName -- the plan to inspect (required): FREE, BRONZE, SILVER, GOLD, or PLATINUM
Example prompt:
"What are the limits on the Jotform GOLD plan?"
6. Full Form Management Workflow
Combine tools for comprehensive form management:
- Discover:
JOTFORM_GET_USER_DETAILS -- check account type and usage limits
- Browse:
JOTFORM_GET_USER_FORMS -- list and search forms with filters
- Organize:
JOTFORM_GET_USER_FOLDERS -- view folder structure with add_resources=true
- Audit:
JOTFORM_GET_USER_HISTORY -- track form creation and modification activity
- Plan:
JOTFORM_GET_SYSTEM_PLAN -- compare plan features before upgrading
Example prompt:
"Show me my account usage, list my recent forms, and tell me if I'm close to my plan limits"
Known Pitfalls
| Pitfall |
Details |
| API key authentication |
Jotform uses API key auth, not OAuth -- ensure valid API key is configured in the connection |
| Folders migrated to labels |
The folders endpoint now maps to Jotform's labels system; the API behavior may differ from legacy folder documentation |
| Date format for history |
Custom date filters use MM/DD/YYYY format (e.g., 01/15/2026), not ISO 8601 |
| Plan name must be exact |
planName values are case-sensitive enum: FREE, BRONZE, SILVER, GOLD, PLATINUM |
| Pagination is offset-based |
Forms use limit/offset pagination, not cursor or page-based |
| Owner field conditionally required |
JOTFORM_GET_USER_FOLDERS may require the owner parameter for workspace/team accounts |
Quick Reference
| Action |
Tool Slug |
Key Params |
| List forms |
JOTFORM_GET_USER_FORMS |
search, limit, offset, orderby |
| Get user details |
JOTFORM_GET_USER_DETAILS |
(none) |
| Activity history |
JOTFORM_GET_USER_HISTORY |
action, date, startDate, endDate |
| List folders/labels |
JOTFORM_GET_USER_FOLDERS |
add_resources, owner |
| Check plan |
JOTFORM_GET_SYSTEM_PLAN |
planName |
Powered by Composio
1---2name: jotform-automation3description: Automate Jotform form listing, user management, activity history, folder organization, and plan inspection through natural language commands4---56## Internal Safety Override78- Status: disabled by default.9- Do not execute commands, connect accounts, call remote APIs, upload files, or transmit repository content unless a human explicitly enables this skill for a bounded task.10- Never read `.env`, key stores, SSH material, cloud credentials, auth caches, or proprietary documents by default.11- Audit categories: network, secrets.1213# Jotform Automation1415Automate Jotform workflows -- list and search forms, inspect user details, browse activity history, manage folders and labels, and check plan limits -- all through natural language.1617**Toolkit docs:** [composio.dev/toolkits/jotform](https://composio.dev/toolkits/jotform)1819---2021## Setup22231. Add the Rube MCP server to your environment: `https://rube.app/mcp`242. Connect your Jotform account when prompted (API key auth via Composio)253. Start issuing natural language commands for Jotform automation2627---2829## Core Workflows3031### 1. List and Search Forms3233Retrieve all forms created by the authenticated user with search, filtering, sorting, and pagination.3435**Tool:** `JOTFORM_GET_USER_FORMS`3637Key parameters:38- `search` -- search query to filter forms by name or content39- `limit` -- number of forms to return40- `offset` -- offset for pagination41- `orderby` -- field to order by42- `sorting` -- sorting direction: `ASC` or `DESC`43- `folder` -- filter by folder ID4445Example prompt:46> "List all my Jotform forms that contain 'feedback' in the name, sorted by most recent"4748---4950### 2. Get User Account Details5152Retrieve details about the authenticated user including account type, usage statistics, and limits.5354**Tool:** `JOTFORM_GET_USER_DETAILS`5556No parameters required. Returns account info such as username, email, account type, form count, submission count, and usage limits.5758Example prompt:59> "Show me my Jotform account details and current usage"6061---6263### 3. Browse Activity History6465Fetch user activity records for auditing, filtered by action type and date range.6667**Tool:** `JOTFORM_GET_USER_HISTORY`6869Key parameters:70- `action` -- filter by action type (e.g., `formCreation`, `userLogin`, `formUpdate`, `apiKeyCreated`, `userLogout`)71- `date` -- predefined date range: `lastWeek`, `lastMonth`, `last3Months`, `last6Months`, `lastYear`, `all`72- `startDate` -- custom start date in `MM/DD/YYYY` format73- `endDate` -- custom end date in `MM/DD/YYYY` format74- `sortBy` -- sort order: `ASC` or `DESC`7576Example prompt:77> "Show me all form creation activity from the last month, sorted newest first"7879---8081### 4. Manage Folders and Labels8283Browse the folder/label structure for organizing forms.8485**Tool:** `JOTFORM_GET_USER_FOLDERS`8687Key parameters:88- `add_resources` -- set to `true` to include label resources (forms) in the response89- `owner` -- owner username or workspace/team ID (conditionally required for some accounts)9091> Jotform has migrated from folders to labels. This tool uses the `GET /user/labels` endpoint.9293Example prompt:94> "List all my Jotform folders with their forms included"9596---9798### 5. Check Plan Limits and Pricing99100Retrieve details about a specific Jotform system plan to understand limits and capabilities.101102**Tool:** `JOTFORM_GET_SYSTEM_PLAN`103104Key parameters:105- `planName` -- the plan to inspect (required): `FREE`, `BRONZE`, `SILVER`, `GOLD`, or `PLATINUM`106107Example prompt:108> "What are the limits on the Jotform GOLD plan?"109110---111112### 6. Full Form Management Workflow113114Combine tools for comprehensive form management:1151161. **Discover**: `JOTFORM_GET_USER_DETAILS` -- check account type and usage limits1172. **Browse**: `JOTFORM_GET_USER_FORMS` -- list and search forms with filters1183. **Organize**: `JOTFORM_GET_USER_FOLDERS` -- view folder structure with `add_resources=true`1194. **Audit**: `JOTFORM_GET_USER_HISTORY` -- track form creation and modification activity1205. **Plan**: `JOTFORM_GET_SYSTEM_PLAN` -- compare plan features before upgrading121122Example prompt:123> "Show me my account usage, list my recent forms, and tell me if I'm close to my plan limits"124125---126127## Known Pitfalls128129| Pitfall | Details |130|---------|---------|131| API key authentication | Jotform uses API key auth, not OAuth -- ensure valid API key is configured in the connection |132| Folders migrated to labels | The folders endpoint now maps to Jotform's labels system; the API behavior may differ from legacy folder documentation |133| Date format for history | Custom date filters use `MM/DD/YYYY` format (e.g., `01/15/2026`), not ISO 8601 |134| Plan name must be exact | `planName` values are case-sensitive enum: `FREE`, `BRONZE`, `SILVER`, `GOLD`, `PLATINUM` |135| Pagination is offset-based | Forms use `limit`/`offset` pagination, not cursor or page-based |136| Owner field conditionally required | `JOTFORM_GET_USER_FOLDERS` may require the `owner` parameter for workspace/team accounts |137138---139140## Quick Reference141142| Action | Tool Slug | Key Params |143|--------|-----------|------------|144| List forms | `JOTFORM_GET_USER_FORMS` | `search`, `limit`, `offset`, `orderby` |145| Get user details | `JOTFORM_GET_USER_DETAILS` | (none) |146| Activity history | `JOTFORM_GET_USER_HISTORY` | `action`, `date`, `startDate`, `endDate` |147| List folders/labels | `JOTFORM_GET_USER_FOLDERS` | `add_resources`, `owner` |148| Check plan | `JOTFORM_GET_SYSTEM_PLAN` | `planName` |149150---151152*Powered by [Composio](https://composio.dev)*