Stripe
Full Stripe API access - create customers, process refunds, inspect subscriptions. For ops workflows that would otherwise mean clicking round the dashboard.
Delv Safety Grade: A
Score 84/100 · assessed 2026-04-22
Stripe's official MCP server provides direct API access to payment operations through Claude. The maintainer score is excellent given Stripe's established reputation as a major payment processor with strong engineering practices. Permissions are broad by necessity, covering customer data, payment processing, and refunds, which means the secret key grants full account access. Supply chain is solid via npm with standard versioning. Transparency is good with open source code and Stripe's documentation. The main risk is the power of the STRIPE_SECRET_KEY: it can read all customer data, process refunds, modify subscriptions, and handle real money. This is appropriate for ops workflows but requires careful key management. No known security incidents with this specific package, though Stripe's API keys are high-value targets generally. Best suited for trusted environments with proper secret rotation.
Lethal Trifecta (prompt-injection exposure)
TWO OF THREECustomer data is private; outbound API calls. Does not ingest untrusted web-style content in normal use.
Green flags
- Official Stripe package from verified vendor with strong security track record
- Open source on GitHub allowing code audit of API interactions
- Uses standard npm distribution with semantic versioning
- Leverages Stripe's existing API security including TLS and key rotation support
- Well-documented with clear Stripe agent toolkit documentation
Red flags
- STRIPE_SECRET_KEY grants full account access including financial operations
- Can process refunds and charges affecting real money without additional auth
- Reads all customer PII including payment methods and billing details
- No built-in rate limiting or spend caps beyond Stripe's API defaults
Permissions requested
Install
npx -y @stripe/mcp --tools=all
{
"stripe": {
"command": "npx",
"args": ["-y", "@stripe/mcp", "--tools=all"],
"env": { "STRIPE_SECRET_KEY": "sk_test_..." }
}
}STRIPE_SECRET_KEYReview
Install this if you do Stripe ops work regularly and want to skip the dashboard. It's faster for known tasks like refunds, customer lookups, or pulling subscription data. Skip it if you only touch Stripe occasionally or need exploratory access, where the dashboard's UI is more helpful.
Good at
- Full Stripe API access means you can handle refunds, customer lookups, and subscription queries without leaving Claude.
- Faster than the dashboard for repetitive ops tasks when you already know what you need.
- Official Stripe package, so it tracks API changes and is maintained by the vendor.
- Supports narrowing tool scope with flags if you want to limit permissions.
- Works well for support workflows where you're triaging customer issues in conversation.
Watch out
- Requires understanding Stripe's object model, so there's a learning curve if you're not already familiar with charges vs payment intents.
- Grants full API access via your secret key, which is risky if you're not careful with test vs live mode.
- Tool names are verbose and API-centric, though Claude handles them fine.
- Overkill if you only need read-only access or touch Stripe infrequently.
- Not ideal for exploratory work where the dashboard's UI and filters are more useful.
Use cases
- Ops: refunding a customer without the dashboard
- Pulling MRR figures for a report
- Debugging failed charges
- One-off customer lookups
Getting started
Works with
Similar MCPs
- Lara Translate MCPProfessional translation with language detection, context-aware translations, translation memories, and glossaries.
- Make MCPTurns Make automation scenarios into callable tools for AI assistants, bridging 1,000+ apps through Make workflows.
- CCXT MCPCrypto exchange integration using CCXT, covering spot, futures, OHLCV, balances, and orders across 20+ exchanges.
- HubSpotHubSpot's MCP for CRM workflows: contacts, deals, tickets, properties. Distributed via NPM, see the developer docs for install steps.