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.
Connect your Stripe account once — MCPizy stores the credentials encrypted and uses them whenever you run a recipe in managed mode.
mcpizy install stripenpx -y @stripe/mcp-servercreate_customerCreate a new customer record in Stripe
Inputs
emailstringrequirednamestringoptionallist_customersList customers with optional filters
Inputs
limitnumberoptionalcreate_payment_linkCreate a shareable payment link for a price
Inputs
pricestringrequiredquantitynumberoptionalcreate_invoiceCreate an invoice for a customer
Inputs
customerstringrequiredlist_productsList active products in the Stripe catalog
list_subscriptionsList subscriptions with status filter
Inputs
statusstringoptionalcreate_refundRefund a payment partially or fully
Inputs
payment_intentstringrequiredamountnumberoptionalWorks identically across clients. Only the config file path differs.
~/.claude.json{
"mcpServers": {
"stripe": {
"command": "npx",
"args": [
"-y",
"@stripe/mcp",
"--tools=all",
"--api-key=${STRIPE_SECRET_KEY}"
],
"env": {
"STRIPE_SECRET_KEY": "sk_test_..."
}
}
}
}.cursor/mcp.json{
"mcpServers": {
"stripe": {
"command": "npx",
"args": [
"-y",
"@stripe/mcp",
"--tools=all",
"--api-key=${STRIPE_SECRET_KEY}"
],
"env": {
"STRIPE_SECRET_KEY": "sk_test_..."
}
}
}
}~/.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_..."
}
}
}
}Copy your restricted API key (recommended over the secret key)
STRIPE_SECRET_KEYPaste 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
If Stripe doesn't fit your stack, these Payments MCP servers solve similar problems.
The Stripe MCP server is an Payments Model Context Protocol server that lets Claude Code, Cursor, Windsurf, VS Code with Copilot, and other MCP-compatible AI agents payment processing and subscription management. It exposes Stripe's capabilities as tools the AI can call directly from your editor or CLI.
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-server` and restarting Claude Code.
Yes. The Stripe MCP server is free and open source (see the GitHub repository linked on this page). You may still need a Stripe account or API key to connect the server to the underlying service, but the MCP layer itself has no MCPizy subscription cost.
Yes. Any MCP-compatible client works — including Claude Code, Claude Desktop, Cursor (via `.cursor/mcp.json`), Windsurf, VS Code with Copilot Chat, and custom agents built on the MCP SDK. The same install command targets all of them; only the config file path differs.
Once installed, your AI agent can payment processing and subscription management directly inside your conversation. Typical use cases include asking Claude Code or Cursor to run Stripe operations, inspect results, chain Stripe with other MCP servers (see our Workflow Recipes), and automate repetitive payments tasks without leaving your editor.