Connect your account, then chat with AI to run tools.
Account MRR, subscription health, payment activity, and customer 360 views from your Stripe account — plus payments, billing, and refunds from chat.
Try this workflow
Revenue snapshot
Run stripe revenue snapshot and summarize account MRR, active subscriptions, balance, and top customers.
Opens MCPBundles Studio with this server selected. After sign-in, chat and run tools from the same thread.
Browse all toolsBuilt for
SaaS Founders, Finance Operations, RevOps, Billing Automation
Revenue snapshot
One-call SaaS metrics instead of paginating every subscription.
Run stripe revenue snapshot and summarize account MRR, active subscriptions, balance, and top customers.
Customer 360
Single-customer profile with recurring revenue and payment history.
Show customer 360 for my highest-MRR Stripe customer including subscriptions, lifetime spend, and recent charges.
Find a customer
Combines Stripe Search with the dashboard view for one customer.
Search Stripe customers by name or email, then open customer 360 for the best match.
Subscription health
Surfaces at-risk recurring revenue before churn shows up in MRR.
List active Stripe subscriptions and flag any past_due or unpaid accounts with their MRR contribution.
How is MRR calculated in the revenue snapshot?
MRR sums normalized monthly recurring amounts from subscriptions in active, trialing, past_due, or unpaid status. Annual and weekly prices are converted to a monthly equivalent from each subscription item's recurring price and quantity.
Can I use test mode and live mode?
Yes. Connect a Stripe secret key — sk_test_ for test data or sk_live_ for production. The same tools work in either mode; the key determines which account and objects you see.
What does the Stripe MCP App show?
The revenue dashboard opens when you call stripe_open_app or stripe_revenue_snapshot. Customer 360 renders in the same panel when you call stripe_customer_360. Other tools return JSON on the text channel for the agent to summarize.
Domain knowledge for Stripe — workflow patterns, data models, and gotchas for your AI agent.
Stripe uses Payment Intents for modern card payments (replace Charges for new integrations). Customers hold payment methods; Subscriptions link customers to recurring Prices. All IDs are strings (pi_, cus_, sub_, ch_, in_, etc.). Test mode uses sk_test_; live uses sk_live_. API is REST with form-encoded bodies; no bulk updates — one object per request.
Customers, invoices, subscriptions, products all support Stripe's Search API with query syntax: exact ':', fuzzy '', range '>' '<', combined with AND/OR. Example: "name'acme' AND created>1704067200".
Attach a payment method to a customer for future payments. After attaching, set it as the customer's default with stripe_upsert_customer(id='cus_...',...
Update metadata on multiple customers at once. Search for customers by query, then apply metadata to all matches. Defaults to dry_run=true so you can ...
Cancel a payment intent before it's confirmed or processed. Once canceled, it cannot be reused.
Cancel a pending payout. Can only cancel payouts that haven't been paid yet.
Cancel a subscription immediately or at the end of the current billing period. Returns updated subscription object.
Confirm a payment intent to process the payment. After confirmation, the payment is charged. The payment intent must have a payment_method attached (e...
Create a charge using the legacy Charges API. Prefer stripe_upsert_payment_intent for new integrations.
Create a Stripe Checkout session — a hosted payment page. Returns a URL where the customer completes payment. Use mode='payment' for one-time charges,...
Create a credit note on a finalized invoice. For a paid invoice you already collected, pass out_of_band_amount (usually the invoice total in cents) to...
Create a draft invoice for a customer. The invoice starts in 'draft' status. Add line items by creating invoice items (via stripe_create_invoice_item)...
Add a line item to a draft invoice. Provide either amount+currency or a price ID. If no invoice ID is given, the item is added to the customer's next ...
Create a reusable payment link — a shareable URL for collecting payments. No code or website needed. Share via email, social media, or messaging. Unli...
Create a payment method (card, bank account, etc.). After creating, attach it to a customer with stripe_attach_payment_method, then optionally set it ...
Create a payout to transfer funds to your bank account. Payouts are processed according to your payout schedule.
Create a price for a product. The product must already exist (use stripe_upsert_product first). Prices are immutable — to change pricing, create a new...
Create a refund for a charge or payment intent. Provide either charge or payment_intent ID (not both). The charge/payment must have status 'succeeded'...
Record usage for a metered subscription item. Used to calculate billing for usage-based subscriptions.
Get a complete 360-degree view of a customer in one call. Returns the customer profile plus their recent charges, active subscriptions, recent invoice...
Get a chronological timeline of all activity for a customer — charges, refunds, invoices, subscription changes, and payment intents. Aggregates data f...
Permanently delete a customer. CAUTION: This action cannot be undone. All subscriptions will be canceled, payment methods removed, and the customer de...
Delete a product. Cannot delete products with active prices or used in active subscriptions.
Detach a payment method from its customer. The payment method itself is not deleted but can no longer be used for that customer.
Get current Stripe account balance including available balance, pending balance, and currency breakdown.
Get detailed information about a specific balance transaction including amount, type, fee, and net amount.
Get detailed information about a specific charge including amount, status, payment method, and customer.
Get detailed information about a checkout session including status, customer, payment details, and line items.
Get detailed information about a specific customer including contact info, payment methods, subscriptions, and balance.
Get detailed information about a specific dispute including status, amount, reason, and evidence submission deadline.
Get detailed information about a specific invoice including line items, amounts, status, customer, and payment details.
Get detailed information about a specific payment intent including status, amount, payment method, and customer.
Get detailed information about a payment method including type, card details (masked), and customer association.
Get detailed information about a specific payout including amount, status, arrival date, and failure reason if applicable.
Get detailed information about a specific price including amount, currency, and product association.
Get detailed information about a specific product including name, description, and pricing.
Get detailed information about a specific refund including amount, status, reason, and associated charge.
Get detailed information about a specific subscription including status, items, billing cycle, and customer.
Finalize a draft invoice, changing its status to 'open'. Once finalized, the invoice is assigned a number and can be sent to the customer or paid. Thi...
List balance transactions (charges, refunds, payouts, etc.) showing funds moving in and out of your Stripe account.
List charges with optional filtering by customer, payment intent, transfer group, and date range. Returns paginated results.
List checkout sessions with optional filtering by customer, payment intent, subscription, status, and date range.
List customers with optional filtering by email and date range. Returns paginated results with cursor for next page.
List disputes. Returns paginated results. Use this to monitor chargebacks and disputes.
List account events (payments, refunds, customer changes, etc.) for monitoring and triggering logic. Events are retained for 30 days.
List file links for files stored on Stripe. Returns URL, expiration status, and metadata for each link.
List files uploaded to Stripe (reports, dispute evidence, identity documents). Returns name, size, purpose, and creation time.
List invoices with optional filtering by customer, subscription, status, collection method, and date range. Returns paginated results.
List payment intents with optional filtering by customer, status, and date range. Returns paginated results.
List payment links with optional filtering by active status. Returns paginated results with the shareable URL for each link.
List payment methods for a customer. Optionally filter by type.
List payouts with optional filtering by status, creation date, and arrival date. Returns paginated results.
List prices with optional filtering by product, active status, type (one_time/recurring), currency, and date. Prices are immutable.
List products with optional filtering by active status and creation date. Returns paginated results. Use stripe_search_products for fuzzy name search.
List refunds with optional filtering by charge, payment intent, and creation date. Returns paginated results.
List setup attempts for a payment method setup intent. Useful for reviewing and troubleshooting payment method creation.
List available shipping rates configured in your Stripe account. Returns rate details including amount, currency, and delivery estimates.
List subscriptions with optional filtering by customer and status. Returns paginated results.
List usage record summaries for a metered subscription item. Shows consumption data for billing.
Open the Stripe revenue dashboard. Use when the user asks to open or view Stripe MRR, subscription health, or account balance before running a specifi...
Pay an open invoice. By default, charges the customer's default payment method. Use paid_out_of_band=true for payments collected outside Stripe (cash,...
Fix a paid invoice whose PDF has wrong buyer name or tax ID. Updates the customer (optional name/tax ID), credits the original invoice out-of-band (no...
Get an account-level revenue snapshot in one call: normalized monthly recurring revenue (MRR), subscription counts by status, optional balance totals,...
Search customers using Stripe's full-text search. More powerful than list — supports fuzzy name matching, metadata queries, date ranges, and combinati...
Search invoices using Stripe's full-text search. More powerful than list — supports searching by customer, status, amount ranges, date ranges, and com...
Search products using Stripe's full-text search. Supports fuzzy name matching, description search, metadata queries, and combinations with AND/OR. Mor...
Search subscriptions using Stripe's full-text search. Supports metadata queries, date ranges, status filtering, and combinations with AND/OR. Use for ...
Send a finalized invoice to the customer via email. The invoice must be in 'open' status. If it's still in 'draft', finalize it first with stripe_fina...
Submit evidence for a dispute. Evidence can include receipts, customer communication, shipping information, and more.
Create a new customer or update an existing customer. For create: provide email (recommended) and other fields. For update: provide customer ID and on...
Create a new payment intent or update an existing one. For create: provide amount (required) and currency. Optionally attach a customer and payment_me...
Create a new product or update an existing product. Products represent goods or services you sell. For create: provide name (required). After creating...
Create a new subscription or update an existing one. For create: provide customer and items (price IDs from stripe_list_prices). Prerequisites: (1) cu...
Void an open invoice. Voiding cancels the invoice permanently — no payment will be collected. Cannot void paid invoices (use refund instead).
Stripe payment processing — payments, customers, subscriptions, invoices, checkout, products, disputes, payouts, and a revenue dashboard with account MRR snapshot and customer 360 views. It provides 72 tools that AI agents can use through the Model Context Protocol (MCP).
Add the MCPBundles server URL to your MCP client configuration (Claude Desktop, Cursor, VS Code, etc.). The URL format is: https://mcp.mcpbundles.com/bundle/stripe. Authentication is handled automatically.
Stripe provides 72 tools that can be called by AI agents, along with a SKILL.md that gives your AI agent domain knowledge about when and how to use them.
Stripe uses API Key. Stripe requires credentials. Connect via MCPBundles and authentication is handled automatically.
MRR sums normalized monthly recurring amounts from subscriptions in active, trialing, past_due, or unpaid status. Annual and weekly prices are converted to a monthly equivalent from each subscription item's recurring price and quantity.
Yes. Connect a Stripe secret key — sk_test_ for test data or sk_live_ for production. The same tools work in either mode; the key determines which account and objects you see.
The revenue dashboard opens when you call stripe_open_app or stripe_revenue_snapshot. Customer 360 renders in the same panel when you call stripe_customer_360. Other tools return JSON on the text channel for the agent to summarize.
Read and write across customers, subscriptions, invoices, payment intents, charges, refunds, products, prices, checkout sessions, disputes, payouts, and balance. Search tools support Stripe's query syntax for customers, subscriptions, products, and invoices.
No. It is for agent-driven billing research, customer triage, and targeted API operations from chat — not full reporting, reconciliation, or finance close workflows.
Connect Stripe to any MCP client in minutes
https://mcp.mcpbundles.com/bundle/stripeThe link prefills the Add custom connector dialog — you still review the values and click Add, then Connect to complete OAuth.
Stripe and paste the MCP URL into Remote MCP server URL.Custom connectors at claude.ai require a paid Claude plan (Pro, Max, Team, or Enterprise).
Same data, different audiences.
More payment integrations you might like
Pabbly Subscriptions Billing is a subscription and billing management platform that enables business...
Dwolla is a payment platform that enables businesses to implement ACH payments seamlessly by providi...
Chargify is a recurring billing and subscription management platform that automates billing operatio...
Square is a payment processing platform that enables businesses to handle point-of-sale transactions...
Ding Connect is a platform that provides mobile top-up services, allowing users to send phone credit...
Chargedesk is a payment processing platform that integrates with various billing systems to facilita...