💼 Jotform Automation
Jotformのフォーム管理、ユーザー管理、活動履歴、フォルダ整理、プラン確認などを自然言語で自動化するSkill。
📺 まず動画で見る(YouTube)
▶ 【自動化】AIガチ勢の最新活用術6選がこれ1本で丸分かり!【ClaudeCode・AIエージェント・AI経営・Skills・MCP】 ↗
※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。
📜 元の英語説明(参考)
Automate Jotform form listing, user management, activity history, folder organization, and plan inspection through natural language commands
🇯🇵 日本人クリエイター向け解説
Jotformのフォーム管理、ユーザー管理、活動履歴、フォルダ整理、プラン確認などを自然言語で自動化するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o jotform-automation.zip https://jpskill.com/download/1761.zip && unzip -o jotform-automation.zip && rm jotform-automation.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/1761.zip -OutFile "$d\jotform-automation.zip"; Expand-Archive "$d\jotform-automation.zip" -DestinationPath $d -Force; ri "$d\jotform-automation.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
jotform-automation.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
jotform-automationフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 1
💬 こう話しかけるだけ — サンプルプロンプト
- › Jotform Automation の使い方を教えて
- › Jotform Automation で何ができるか具体例で見せて
- › Jotform Automation を初めて使う人向けにステップを案内して
これをClaude Code に貼るだけで、このSkillが自動発動します。
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Jotform Automation
Jotformのワークフローを自動化します。フォームのリスト表示と検索、ユーザー詳細の確認、アクティビティ履歴の閲覧、フォルダーとラベルの管理、プラン制限の確認を、すべて自然言語で行えます。
ツールキットのドキュメント: composio.dev/toolkits/jotform
セットアップ
- Rube MCPサーバーを環境に追加します:
https://rube.app/mcp - プロンプトが表示されたらJotformアカウントを接続します(Composio経由のAPIキー認証)
- Jotform自動化のための自然言語コマンドの発行を開始します
コアワークフロー
1. フォームのリスト表示と検索
認証済みユーザーが作成したすべてのフォームを、検索、フィルタリング、ソート、ページネーションで取得します。
ツール: JOTFORM_GET_USER_FORMS
主要なパラメーター:
search-- フォームを名前またはコンテンツでフィルタリングするための検索クエリlimit-- 返すフォームの数offset-- ページネーションのオフセットorderby-- ソートするフィールドsorting-- ソート方向:ASCまたはDESCfolder-- フォルダーIDでフィルタリング
プロンプトの例:
"名前に'feedback'を含むJotformフォームをすべて、最新順にリストしてください"
2. ユーザーアカウント詳細の取得
認証済みユーザーに関する詳細(アカウントタイプ、使用統計、制限など)を取得します。
ツール: JOTFORM_GET_USER_DETAILS
パラメーターは不要です。ユーザー名、メールアドレス、アカウントタイプ、フォーム数、送信数、使用制限などのアカウント情報を返します。
プロンプトの例:
"Jotformアカウントの詳細と現在の使用状況を表示してください"
3. アクティビティ履歴の閲覧
監査のためにユーザーアクティビティレコードを取得します。アクションタイプと日付範囲でフィルタリングできます。
ツール: JOTFORM_GET_USER_HISTORY
主要なパラメーター:
action-- アクションタイプでフィルタリング(例:formCreation、userLogin、formUpdate、apiKeyCreated、userLogout)date-- 定義済みの日付範囲:lastWeek、lastMonth、last3Months、last6Months、lastYear、allstartDate--MM/DD/YYYY形式のカスタム開始日endDate--MM/DD/YYYY形式のカスタム終了日sortBy-- ソート順:ASCまたはDESC
プロンプトの例:
"先月のフォーム作成アクティビティをすべて、新しい順に表示してください"
4. フォルダーとラベルの管理
フォームを整理するためのフォルダー/ラベル構造を閲覧します。
ツール: JOTFORM_GET_USER_FOLDERS
主要なパラメーター:
add_resources-- レスポンスにラベルリソース(フォーム)を含めるにはtrueに設定しますowner-- 所有者のユーザー名またはワークスペース/チームID(一部のアカウントでは条件付きで必須)
Jotformはフォルダーからラベルに移行しました。このツールは
GET /user/labelsエンドポイントを使用します。
プロンプトの例:
"Jotformのフォルダーをすべて、フォームを含めてリストしてください"
5. プラン制限と料金の確認
特定のJotformシステムプランの詳細を取得し、制限と機能について理解します。
ツール: JOTFORM_GET_SYSTEM_PLAN
主要なパラメーター:
planName-- 調査するプラン(必須):FREE、BRONZE、SILVER、GOLD、またはPLATINUM
プロンプトの例:
"JotformのGOLDプランの制限は何ですか?"
6. 完全なフォーム管理ワークフロー
包括的なフォーム管理のためにツールを組み合わせます:
- 発見:
JOTFORM_GET_USER_DETAILS-- アカウントタイプと使用制限を確認します - 閲覧:
JOTFORM_GET_USER_FORMS-- フィルターを使用してフォームをリスト表示および検索します - 整理:
JOTFORM_GET_USER_FOLDERS--add_resources=trueでフォルダー構造を表示します - 監査:
JOTFORM_GET_USER_HISTORY-- フォームの作成および変更アクティビティを追跡します - 計画:
JOTFORM_GET_SYSTEM_PLAN-- アップグレード前にプラン機能を比較します
プロンプトの例:
"アカウントの使用状況を表示し、最近のフォームをリストし、プラン制限に近づいているかどうか教えてください"
既知の落とし穴
| 落とし穴 | 詳細 |
|---|---|
| APIキー認証 | JotformはOAuthではなくAPIキー認証を使用します。接続で有効なAPIキーが設定されていることを確認してください |
| フォルダーからラベルへの移行 | フォルダーエンドポイントは現在Jotformのラベルシステムにマッピングされています。APIの動作は従来のフォルダーのドキュメントと異なる場合があります |
| 履歴の日付形式 | カスタム日付フィルターはMM/DD/YYYY形式(例: 01/15/2026)を使用し、ISO 8601ではありません |
| プラン名は正確である必要があります | planNameの値は、大文字と小文字を区別する列挙型です: FREE、BRONZE、SILVER、GOLD、PLATINUM |
| ページネーションはオフセットベース | フォームはカーソルまたはページベースではなく、limit/offsetページネーションを使用します |
ownerフィールドは条件付きで必須 |
JOTFORM_GET_USER_FOLDERSは、ワークスペース/チームアカウントの場合、ownerパラメーターを必要とする場合があります |
クイックリファレンス
| アクション | ツールスラッグ | 主要なパラメーター |
|---|---|---|
| フォームのリスト表示 | JOTFORM_GET_USER_FORMS |
search、limit、offset、orderby |
| ユーザー詳細の取得 | JOTFORM_GET_USER_DETAILS |
(なし) |
| アクティビティ履歴 | JOTFORM_GET_USER_HISTORY |
action、date、startDate、endDate |
| フォルダー/ラベルのリスト表示 | JOTFORM_GET_USER_FOLDERS |
add_resources、owner |
| プランの確認 | JOTFORM_GET_SYSTEM_PLAN |
planName |
Powered by Composio
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
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 contentlimit-- number of forms to returnoffset-- offset for paginationorderby-- field to order bysorting-- sorting direction:ASCorDESCfolder-- 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,allstartDate-- custom start date inMM/DD/YYYYformatendDate-- custom end date inMM/DD/YYYYformatsortBy-- sort order:ASCorDESC
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 totrueto include label resources (forms) in the responseowner-- owner username or workspace/team ID (conditionally required for some accounts)
Jotform has migrated from folders to labels. This tool uses the
GET /user/labelsendpoint.
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, orPLATINUM
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 withadd_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