TL;DR
Stripe is a Payments MCP server that lets Claude Code, Cursor, Windsurf and any MCP-compatible AI agent payment processing and subscription management. Install in 1 minute with mcpizy install stripe.
Stripe
Install verified 7 toolsPayments
Payment processing and subscription management
Official homepageRepo audit: 98/100 β actively maintained, documented and licensed
Scored on licence, adoption, maintenance and documentation of stripe/agent-toolkit. We show the grade whether it flatters the server or not.
last commit 2 days ago Β· 1,760 stars Β· MIT licence Β· 77 open issues
Read the full audit on CheckMCPInstall Stripe
mcpizy install stripenpx -y @stripe/mcp --api-key=YOUR_STRIPE_SECRET_KEYTools exposed
7 tools availablecreate_customerCreate a new customer record in Stripe
create_customerCreate a new customer record in Stripe
Inputs
emailstringrequirednamestringoptional
list_customersList customers with optional filters
list_customersList customers with optional filters
Inputs
limitnumberoptional
create_payment_linkCreate a shareable payment link for a price
create_payment_linkCreate a shareable payment link for a price
Inputs
pricestringrequiredquantitynumberoptional
create_invoiceCreate an invoice for a customer
create_invoiceCreate an invoice for a customer
Inputs
customerstringrequired
list_productsList active products in the Stripe catalog
list_productsList active products in the Stripe catalog
list_subscriptionsList subscriptions with status filter
list_subscriptionsList subscriptions with status filter
Inputs
statusstringoptional
create_refundRefund a payment partially or fully
create_refundRefund a payment partially or fully
Inputs
payment_intentstringrequiredamountnumberoptional
Configuration
Works identically across clients. Only the config file path differs.
Claude Code~/.claude.json
~/.claude.json{
"mcpServers": {
"stripe": {
"command": "npx",
"args": [
"-y",
"@stripe/mcp",
"--tools=all",
"--api-key=${STRIPE_SECRET_KEY}"
],
"env": {
"STRIPE_SECRET_KEY": "sk_test_..."
}
}
}
}Cursor.cursor/mcp.json
.cursor/mcp.json{
"mcpServers": {
"stripe": {
"command": "npx",
"args": [
"-y",
"@stripe/mcp",
"--tools=all",
"--api-key=${STRIPE_SECRET_KEY}"
],
"env": {
"STRIPE_SECRET_KEY": "sk_test_..."
}
}
}
}Windsurf~/.codeium/windsurf/mcp_config.json
~/.codeium/windsurf/mcp_config.json{
"mcpServers": {
"stripe": {
"command": "npx",
"args": [
"-y",
"@stripe/mcp",
"--tools=all",
"--api-key=${STRIPE_SECRET_KEY}"
],
"env": {
"STRIPE_SECRET_KEY": "sk_test_..."
}
}
}
}Authentication setup
- 1
Copy your restricted API key (recommended over the secret key)
Get itSTRIPE_SECRET_KEY
What you can do with Stripe MCP
Paste any of these prompts into Claude Code, Cursor or another MCP-compatible client.
βCreate a new customer with email [email protected]β
Uses: create_customer
βGenerate a $49/month payment link for my 'Pro Plan' productβ
Uses: create_payment_link
βShow me all active subscriptions and their MRR breakdownβ
Uses: list_subscriptions
βRefund payment intent pi_3AbC in fullβ
Uses: create_refund
βList every product in my catalog with its pricesβ
Uses: list_products
Works with
More Payments MCPs
Alternatives to Stripe
If Stripe doesn't fit your stack, these Payments MCP servers solve similar problems.
Frequently asked questions
What is the Stripe MCP server?
Stripe is listed as an Payments Model Context Protocol server whose documented purpose is to let an MCP-compatible agent payment processing and subscription management. Client support, permissions and authentication remain specific to the upstream project.
How do I install Stripe MCP with Claude Code?
The fastest way is the MCPizy CLI: run `mcpizy install stripe` and MCPizy will add the server to your `.claude.json` automatically. You can also install it manually by adding an entry under `mcpServers` in `.claude.json` with the command `npx -y @stripe/mcp --api-key=YOUR_STRIPE_SECRET_KEY` and restarting Claude Code.
Does MCPizy charge to view or install Stripe MCP?
No. Reading this profile and copying its install guidance is free. Upstream software, API, account or usage costs are separate, and licence coverage should be checked from the linked source when available.
Does Stripe MCP work with Cursor and Windsurf?
The MCP standard is supported by those clients, but a specific server can still have client-specific setup or transport limits. Use the configuration shown on this page when present and verify the upstream instructions before installation.
What can I do with Stripe MCP?
Its documented purpose is to let an MCP-compatible agent payment processing and subscription management. The exact tools, permissions and write capabilities depend on the server version and configuration shown by the upstream project.
Compare before you commit
Put this server beside an alternative, or return to the full evidence directory.
Compare MCP serversBack to directory