123FormBuilder Integration (Membrane)
Query 123FormBuilder forms and submissions and automate workflows through the Membrane CLI.
AutomationIntermediate★ 264⑂ 41AI score 7/10Last updated: Apr 28, 2026
What it does
- Creates and monitors a connection to 123FormBuilder via the Membrane CLI (
connection ensure,connection get --wait, with clear handling of BUILDING / CLIENT_ACTION_REQUIRED states). - Delegates OAuth login and credential refresh to Membrane, so no API keys or tokens are stored locally.
- Discovers actions from a natural-language intent (
action list --intent) and runs them (action run), falling back to authenticated proxy calls (membrane request) for uncovered endpoints. - Outlines the core object model: Form, Submission, User, Account.
Who it's for
- Marketers and ops staff who collect surveys or lead forms in 123FormBuilder and want automatic data pulls.
- Developers who need a form-data pipeline without writing auth plumbing.
- Teams already on Membrane or centralizing many SaaS integrations.
Examples
- "Connect my 123FormBuilder account" → run
membrane connection ensure "https://www.123formbuilder.com/" --json, authenticate in the browser, capture the connection id. - "Summarize this week's contact-form submissions" →
membrane action list --intent "list form submissions"thenmembrane action run <actionId> --connectionId=.... - No matching action →
membrane request <connectionId> /forms --query "limit=10"to hit the raw API with injected auth.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/membranedev/application-skills/HEAD/skills/123formbuilder/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/123formbuilder folder from the GitHub repo membranedev/application-skills into my ~/.claude/skills/123formbuilder/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/membranedev/application-skills.git /tmp/application-skills && mkdir -p ~/.claude/skills && cp -r /tmp/application-skills/skills/123formbuilder ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Make sure Node.js is installed (
node -v). - Install the Membrane CLI:
npm install -g @membranehq/cli@latest - Clone the skills repository:
git clone https://github.com/membranedev/application-skills.git - Copy just this skill:
mkdir -p ~/.claude/skills && cp -r application-skills/skills/123formbuilder ~/.claude/skills/ - Log in to Membrane:
membrane login --tenant --clientName=claude(in headless setups, open the printed URL and finish withmembrane login complete <code>). - Restart Claude Code and ask something like "list my 123FormBuilder submissions" to trigger the skill.