Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

123FormBuilder Integration (Membrane)

Query 123FormBuilder forms and submissions and automate workflows through the Membrane CLI.

AutomationIntermediate26441AI 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

  1. "Connect my 123FormBuilder account" → run membrane connection ensure "https://www.123formbuilder.com/" --json, authenticate in the browser, capture the connection id.
  2. "Summarize this week's contact-form submissions" → membrane action list --intent "list form submissions" then membrane action run <actionId> --connectionId=....
  3. 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Make sure Node.js is installed (node -v).
  2. Install the Membrane CLI: npm install -g @membranehq/cli@latest
  3. Clone the skills repository: git clone https://github.com/membranedev/application-skills.git
  4. Copy just this skill: mkdir -p ~/.claude/skills && cp -r application-skills/skills/123formbuilder ~/.claude/skills/
  5. Log in to Membrane: membrane login --tenant --clientName=claude (in headless setups, open the printed URL and finish with membrane login complete <code>).
  6. Restart Claude Code and ask something like "list my 123FormBuilder submissions" to trigger the skill.