Stripe

Stripe

Stripe offers online payment infrastructure, fraud prevention, and APIs enabling businesses to accept and manage payments globally

654VIEWS
82USERS

Install MCP Server

Paste and run this command in your terminal to set up Cursor with MCP

npx @composio/cli add cursor --app stripenpx @composio/cli add cursor --app stripenpx @composio/cli add cursor --app stripenpx @composio/cli add cursor --app stripe

After running the command, restart Cursor to start using the MCP Server.

Available Tools

Cancel Subscription

Cancels a customer's active stripe subscription at the end of the current billing period, with options to invoice immediately for metered usage and prorate charges for unused time.

Create Customer

Creates a new customer in stripe, required for creating charges or subscriptions; an email is highly recommended for customer communications.

Create An Invoice

Creates a new draft stripe invoice for a customer; use to revise an existing invoice, bill for a specific subscription (which must belong to the customer), or apply detailed customizations.

Create Payment Intent

Creates a stripe paymentintent to initiate and process a customer's payment; using `application fee amount` for a connected account requires the `stripe-account` header.

Create A Price

Creates a new stripe price for a product, defining its charges (one-time or recurring) and billing scheme; requires either an existing `product` id or `product data`.

Create Product

Creates a new product in stripe, encoding the request as `application/x-www-form-urlencoded` by flattening nested structures.

Create Refund

Creates a full or partial refund in stripe, targeting either a specific charge id or a payment intent id.

Create Subscription

Creates a new, highly configurable subscription for an existing stripe customer, supporting multiple items, trials, discounts, and various billing/payment options.

Delete Customer

Permanently deletes an existing stripe customer; this irreversible action also cancels their active subscriptions and removes all associated data.

List Customer Payment Methods

Retrieves a list of payment methods for a given customer, supporting type filtering and pagination.

List Payment Links

Retrieves a list of payment links from stripe, sorted by creation date in descending order by default.

List Refunds

Lists stripe refunds, sorted by creation date descending (newest first), with optional filtering by charge or payment intent and pagination support.

List Stripe Shipping Rates

Retrieves a list of stripe shipping rates, filterable by active status, creation date, and currency; useful for managing or displaying shipping options.

List Tax Rates

Retrieves a list of tax rates, which are returned sorted by creation date in descending order.

Retrieve Charge Details

Retrieves full details for an existing stripe charge using its unique id.

Retrieve Payment Intent

Retrieves a paymentintent by its id; `client secret` is required if a publishable api key is used.

Retrieve A Refund

Retrieves details for an existing stripe refund using its unique `refund id`.

Search Stripe Customers

Retrieves a list of stripe customers matching a search query that adheres to stripe's search query language.

Update Payment Intent

Updates a stripe paymentintent with new values for specified parameters; note that if `currency` is updated, `amount` might also be required, and certain updates (e.g., to `payment method`) can necessitate re-confirmation by the customer.

Update Subscription

Updates an existing, non-canceled stripe subscription by its id, ensuring all referenced entity ids (e.g., prices, coupons) are valid and automatic tax liability is correctly specified if enabled.

20 actions available