Interact with Stripe API for payments, customers, and subscriptions
The official Stripe MCP Server lets your AI assistant interact with the full Stripe API. Manage customers, products, subscriptions, payment links, invoices, and refunds through natural language.
Built by Stripe as part of their Agent Toolkit, the server supports all major Stripe resources. It uses your Stripe API key for authentication and supports both test and live mode.
Essential for developers building payment-integrated applications who want to prototype, debug, and manage Stripe resources without leaving their AI workflow.
Official first-party server from Stripe. Uses API keys with configurable tool access. Excellent security practices from a payments company.
6 files analyzed · 2 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: STRIPE_API_KEY
Sign up freeAdd this to your MCP configuration file:
{
"mcpServers": {
"stripe": {
"command": "npx",
"args": [
"-y",
"@stripe/mcp",
"--tools=all",
"--api-key=sk_test_****"
],
"env": {}
}
}
}Once installed, try these example prompts and explore these capabilities:
From the project's GitHub README.

This repo is the one-stop shop for building AI-powered products and businesses on top of Stripe.
It contains a collection of SDKs to help you integrate Stripe with LLMs and agent frameworks, including:
@stripe/ai-sdk - for integrating Stripe's billing infrastructure with Vercel's ai and @ai-sdk libraries.@stripe/token-meter - for integrating Stripe's billing infrastructure with native SDKs from OpenAI, Anthropic, and Google Gemini, without any framework dependencies.Stripe hosts a remote MCP server at https://mcp.stripe.com. This allows secure MCP client access via OAuth. View the docs here.
You can also build autonomous agents with MCP as well.
Agent skills are instructions that agents can use to build faster and more accurately. Stripe offers a collection of skills that help your agents use the latest best practices when building with Stripe.
If you use one of these popular agent harnesses, we recommend installing the official Stripe plugins, which include additional agent tools and update automatically.
Run this command in your project:
claude plugin install stripe@claude-plugins-official
Run this command in your project:
codex plugin add stripe@openai-curated
Run this command in your project:
/add-plugin stripe
You can also install through the Cursor marketplace.
Manually installed skills don’t auto-update. Run
npx skills update -yto get the latest versions.
Run this command in your project:
npx skills add https://docs.stripe.com
Stripe built this right. Full API access with proper tool scoping. I use it daily to look up customer data and debug webhook issues.
The subscription management tools are excellent. Creating payment links through Claude is incredibly fast for prototyping.
Very well built. Only giving 4 stars because I wish it had more granular tool selection. The --tools=all flag is a bit broad.
Added support for streaming responses and improved error handling for rate-limited requests.
Major release: new tool registration API, breaking changes to configuration format. See migration guide.
Added OAuth 2.0 support and improved connection pooling.
Initial stable release.