Memberstack MCP integration for AI agents.
Connect AI agents to Memberstack through 8 structured actions, including get member, add free plan, delete member, and verify member token. Review authentica…
- ACTION CONTRACTS
- 8
- AUTHENTICATION
- API key
- SOURCE STATUS
- Provider-backed
CATALOG SOURCE REVIEWED AUGUST 23, 2026 / ACTION NAMES AND SCHEMAS DERIVED FROM WORKING MACHINES PROVIDER SOURCE
CAPABILITY PROFILE
What the Memberstack integration exposes
The Memberstack Agent App exposes 8 provider-backed actions for security and developer tools work. Its current contract lets an authorized agent retrieve one memberstack member by member id or email address, optionally embedding team memberships, add a free memberstack plan to an existing member, and permanently delete a memberstack member with optional stripe customer and subscription cleanup flags. These operations are called through Working Machines as typed capabilities rather than through browser navigation or copied UI steps.
A connection uses API key. Before execution, the agent can inspect the selected action, its required fields, declared scopes, and expected output contract. Provider credentials remain inside the Working Machines runtime; the calling agent receives the capability and its structured result, not the underlying secret.
For reliable operation, start with the narrowest action that satisfies the task, resolve stable provider identifiers before changing state, and validate the returned object or status after execution. Availability still depends on the connected Memberstack account, granted provider permissions, workspace policy, region, plan, and upstream API behavior.
VERIFIED ACTION SAMPLE
Real Memberstack capabilities.
Showing 8 of 8 actions. Risk labels are conservative signals based on operation names, not substitutes for provider documentation or runtime policy.
get_memberREADRetrieve one Memberstack member by member ID or email address, optionally embedding team memberships.
INPUTS: idOrEmail / includeTeams
add_free_planWRITEAdd a free Memberstack plan to an existing member.
INPUTS: id / planId
delete_memberHIGH IMPACTPermanently delete a Memberstack member with optional Stripe customer and subscription cleanup flags.
INPUTS: id / deleteStripeCustomer / cancelStripeSubscriptions
verify_member_tokenREVIEWVerify a Memberstack member JWT and return the decoded token payload.
INPUTS: token
create_memberWRITECreate a Memberstack member with email, optional password, free plans, custom fields, metadata, JSON data, and login redirect.
INPUTS: email / password / plans / customFields / metaData
list_membersREADList Memberstack members with cursor pagination and optional JSON-field inclusion.
INPUTS: after / order / first / limit / includeJSON
remove_free_planHIGH IMPACTRemove a free Memberstack plan from an existing member.
INPUTS: id / planId
update_memberWRITEPartially update a Memberstack member's email, custom fields, metadata, JSON data, login redirect, verified status, or profile image.
INPUTS: id / email / customFields / metaData / json
INPUT CONTRACTS
Know what the action needs before it runs.
get_member
idOrEmailREQUIRED- The Memberstack member ID or email address.
includeTeamsOPTIONAL- Whether to request embedded team memberships with include=teams.
add_free_plan
idOPTIONAL- The Memberstack member ID.
planIdOPTIONAL- The free plan ID. Free plan IDs start with pln_.
delete_member
idREQUIRED- The Memberstack member ID to delete.
deleteStripeCustomerOPTIONAL- Whether to delete the associated Stripe customer.
cancelStripeSubscriptionsOPTIONAL- Whether to cancel associated Stripe subscriptions.
verify_member_token
tokenOPTIONAL- The JWT token issued to a Memberstack member.
PROVIDER-SPECIFIC WORKFLOWS
Jobs this Agent App can support
Inspect Get Member
Retrieve one Memberstack member by member ID or email address, optionally embedding team memberships. Use this as a bounded discovery step, retain the returned identifier, and avoid expanding the read beyond the task's stated scope.
get_memberControl Add Free Plan
Add a free Memberstack plan to an existing member. Resolve the target first, present material changes for confirmation, and make retries idempotent where the provider supports it.
add_free_planVerify with List Members
List Memberstack members with cursor pagination and optional JSON-field inclusion. Compare the returned provider state with the intended outcome and preserve stable IDs or canonical links in the run record.
list_membersSAFETY BOUNDARY
Operate Memberstack with explicit limits
- Authorize Memberstack with API key and grant only the provider access required by the selected actions.
- 5 actions are change-capable by name. Confirm the target identity and material parameters before allowing a write.
- Treat `delete_member` and `remove_free_plan` as high-impact operations and require an explicit approval boundary.
- No provider scope string is declared on the sampled actions. Verify the connected account's actual permissions in Memberstack rather than assuming unrestricted access.
- After a call, inspect the structured result and execution record before reporting that the Memberstack task completed successfully.
CONNECTION MODEL
API key
Memberstack secret key sent with the x-api-key request header. View and manage keys in your Memberstack dashboard under Dev Tools > Keys & IDs: https://app.memberstack.com/.
Working Machines stores provider credentials behind the execution boundary. An agent can use an authorized connection identity, but catalog discovery alone does not reveal OAuth tokens, API keys, or provider secrets.
- READ SIGNALS
- 2
- WRITE SIGNALS
- 3
- HIGH IMPACT
- 2
- REVIEW SIGNALS
- 1
EVIDENCE AND AVAILABILITY
Provider reference
Action names, input fields, authentication types, and counts on this page are generated from the Working Machines provider catalog. Provider behavior, quotas, object semantics, account eligibility, and regional availability remain governed by Memberstack.