Stripe
OFFICIAL · StripeAUTH REQUIREDMITBy Stripe
Enable your AI agent to interact with Stripe — retrieve payment data, manage customers, list subscriptions, and analyze revenue directly from your IDE.
Requires a Stripe Secret API Key (sk_live_... or sk_test_... for test mode). Never use your live key in development — use the test mode key.
Setup Guide
{
"mcpServers": {
"stripe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-stripe"
],
"env": {
"STRIPE_SECRET_KEY": "sk_test_yourStripeTestKeyHere"
}
}
}
}Tools
stripe_list_customers
List Stripe customers with pagination and optional email filter.
stripe_get_customer
Retrieve a customer's full profile including payment methods and metadata.
stripe_list_payments
List recent payment intents and charges with status and amount.
stripe_list_subscriptions
List active, past_due, or canceled subscriptions for a customer or workspace.
stripe_get_subscription
Retrieve detailed subscription information including plan, status, and next billing date.
stripe_list_invoices
List invoices for a customer or across the entire account.
stripe_get_balance
Get current Stripe account balance and pending payouts.
stripe_create_payment_link
Generate a Stripe Payment Link for a product or price.
Compatibility
About
Overview
The Stripe MCP server connects your AI assistant to your Stripe account, enabling real-time access to payment, customer, and subscription data. For SaaS founders and backend developers, this means being able to analyze revenue, debug payment issues, and explore billing data — all from within your AI workflow.
This integration is particularly valuable during billing feature development: your AI can inspect live test data, verify webhook behavior, and help you understand your subscription state without toggling between Stripe's dashboard and your editor.
Getting Your Stripe API Key
- Log in to your Stripe Dashboard.
- Navigate to Developers → API Keys.
- Under Standard keys, copy the Secret key:
- Use
sk_test_...for development and testing. - Use
sk_live_...only in production with appropriate access controls.
- Use
- Paste the key into
STRIPE_SECRET_KEYin your MCP configuration.
⚠️ Security Warning: Never commit your Stripe secret key to source control. Add
STRIPE_SECRET_KEYto your.gitignoreand use environment variable management tools likedotenvor a secrets manager.
Stripe Test Mode
Stripe's test mode uses fake card numbers and creates no real charges. For development, always use:
- Test key:
sk_test_... - Test card:
4242 4242 4242 4242with any future expiry date
Install and Troubleshooting Intent Coverage
Developer-install and troubleshooting intent for community MCP server listings.
install mcp server / mcp server setup guide
mcp json config example / vscode mcp setup
mcp server not working / mcp tools not showing
mcp server compatibility matrix / cursor vs vscode mcp compatibility
mcp server monetization options / convert community mcp server to paid listing
Related Setup, Debug, and Learning Links
Integration usage patterns
Cross-tool integration usage maps to this docs path.
CLI installation guide
Install baseline for all IDEs before listing-specific setup.
Cursor setup walkthrough
High-intent setup path for developer troubleshooting journeys.
Troubleshooting: server not working
Common failure modes for install and runtime issues.
Troubleshooting: tools not showing
Covers discovery/listing failures across major IDEs.
Registry listing: postgres
Maps this community reference to install-ready hosted listing.
Related explore entry: GitHub
Keeps same-intent users on matched category and tool shape.
Related explore entry: GitLab
Keeps same-intent users on matched category and tool shape.
Install this server with the AgenticMarket CLI — you'll be prompted for your API credentials or OAuth tokens during setup. No manual JSON editing.
$npx agenticmarket install stripeGitHub
Empower your AI agent to read, write, search, and manage repositories on GitHub, including issues, commits, and pull requests.
GitLab
Enable your AI agent to interact with GitLab repositories, merge requests, issues, pipelines, and project files via the official MCP server.
AgenticMarket