Loading...
Loading...
Stripe integration. Manage Customers, Products, Payouts, Transfers. Use when the user wants to interact with Stripe data.
npx skill4agent add membranedev/application-skills stripemembranenpm install -g @membranehq/climembrane login --tenantmembrane login complete <code>membrane search stripe --elementType=connector --jsonoutput.items[0].element?.idmembrane connect --connectorId=CONNECTOR_ID --jsonmembrane connection list --jsonconnectionIdmembrane action list --intent=QUERY --connectionId=CONNECTION_ID --json| Name | Key | Description |
|---|---|---|
| List Products | list-products | Returns a list of your products |
| List Prices | list-prices | Returns a list of your prices |
| List Events | list-events | Returns a list of events that have occurred in your Stripe account |
| Get Customer | get-customer | Retrieves a customer by their ID |
| Get Product | get-product | Retrieves a product by ID |
| Get Price | get-price | Retrieves a price by ID |
| Get Payment Intent | get-payment-intent | Retrieves a payment intent by ID |
| Get Invoice | get-invoice | Retrieves an invoice by ID |
| Get Subscription | get-subscription | Retrieves a subscription by ID |
| Get Payment Method | get-payment-method | Retrieves a payment method by ID |
| Get Event | get-event | Retrieves an event by ID |
| Get Charge | get-charge | Retrieves a charge by ID |
| Get Refund | get-refund | Retrieves a refund by ID |
| Get Balance | get-balance | Retrieves the current account balance |
| Create Product | create-product | Creates a new product |
| Create Price | create-price | Creates a new price for an existing product |
| Update Product | update-product | Updates an existing product |
| Update Subscription | update-subscription | Updates an existing subscription |
| Update Price | update-price | Updates an existing price |
| Delete Product | delete-product | Deletes a product. |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --jsonmembrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"membrane request CONNECTION_ID /path/to/endpoint| Flag | Description |
|---|---|
| HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
| Add a request header (repeatable), e.g. |
| Request body (string) |
| Shorthand to send a JSON body and set |
| Send the body as-is without any processing |
| Query-string parameter (repeatable), e.g. |
| Path parameter (repeatable), e.g. |
membrane action list --intent=QUERY