memberstack-cli
Original:🇺🇸 English
Translated
1 scriptsChecked / no sensitive code detected
Use the Memberstack CLI to manage Memberstack accounts from the terminal. Covers authentication, apps, members, plans, custom fields, data tables, and records. Trigger this skill whenever the user wants to interact with Memberstack — including managing members, plans, custom fields, data tables/records, or authenticating with Memberstack. Also trigger when the user mentions "memberstack", "memberstack-cli", membership management, or member data operations via CLI.
9installs
Added on
NPX Install
npx skill4agent add 224-industries/webflow-skills memberstack-cliTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Memberstack CLI Skill
Manage your Memberstack account from the terminal using .
memberstack-cliPrerequisites
Install globally and authenticate before running any commands:
bash
npm install -g memberstack-cli
memberstack auth loginAuthentication opens a browser for OAuth and stores tokens at with restricted file permissions. Use to clear credentials.
~/.memberstack/auth.jsonmemberstack auth logoutGlobal Flags
All commands support these flags:
- /
--json— Output raw JSON instead of formatted tables-j - — Use live environment instead of sandbox (defaults to sandbox)
--live
Command Reference
The CLI has the following top-level commands. Read the corresponding reference file for full usage, options, and examples:
| Command | Purpose | Reference |
|---|---|---|
| Login, logout, check status | |
| Show current identity | |
| Create, update, delete, restore apps | |
| List, create, update, delete, import/export, bulk ops | |
| List, create, update, delete, reorder plans | |
| List, create, update, delete custom fields | |
| List, create, update, delete data tables | |
| CRUD, query, import/export, bulk ops on table records | |
Read for an overview of installation, authentication, and environment switching.
references/getting-started.mdWorkflow Tips
- Always authenticate first with . Verify with
memberstack auth login.memberstack whoami - Use when you need to parse output programmatically or pipe to other tools.
--json - Default environment is sandbox. Pass for production operations.
--live - For bulk member operations, use ,
members import, ormembers bulk-updatewith CSV/JSON files.members bulk-add-plan - For bulk record operations, use ,
records import, orrecords bulk-update.records bulk-delete - Use and
members findfor friendly filter-based searches.records find
Reference Documentation
Each reference file includes YAML frontmatter with , , and for searchability. Use the search script available in to quickly find relevant references by tag or keyword.
namedescriptiontagsscripts/search_references.py- Getting Started: Quick-start guide for installing the Memberstack CLI, authenticating, and running core member, table, and record commands.
- Authentication Commands: OAuth authentication reference for Memberstack CLI login, logout, and status workflows with local token handling details.
- Whoami Command: Reference for showing the currently authenticated Memberstack identity and environment context from the CLI.
- Apps Commands: Command reference for managing Memberstack apps, including create, update, delete, restore, and current app inspection.
- Members Commands: Comprehensive command reference for Memberstack member management, including CRUD, plans, search, stats, and bulk workflows.
- Plans Commands: Reference for managing Memberstack plans, including listing, creation, updates, deletion, and plan priority ordering.
- Custom Fields Commands: Reference for listing, creating, updating, and deleting Memberstack custom fields, including visibility and admin restrictions.
- Tables Commands: Reference for managing Memberstack data tables, including list, get, describe, create, update, and delete operations.
- Records Commands: Reference for working with Memberstack table records, including CRUD, query, filtering, count, import/export, and bulk updates.
Searching References
bash
# List all references with metadata
python scripts/search_references.py --list
# Search by tag (exact match)
python scripts/search_references.py --tag <tag>
# Search by keyword (across name, description, tags, and content)
python scripts/search_references.py --search <query>