Stripe MCP Server
by Stripe ยท โญ 1.9k stars ยท updated 2 weeks ago
Interact with the Stripe API through natural language. Create customers, manage subscriptions, process refunds, and get payment analytics โ all from your AI assistant.
87
Very Good
Quality Score Breakdown
maintenance90/100
community85/100
documentation88/100
compatibility85/100
Use Cases
- โcreate Stripe customers
- โmanage subscriptions
- โprocess refunds
- โpayment analytics
โก One-Click Install Configs
Copy the config below and paste it into your AI client's config file.
๐ค Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"stripe": {
"command": "npx",
"args": [
"-y",
"@stripe/agent-toolkit"
],
"env": {
"STRIPE_SECRET_KEY": "sk_test_YOUR_KEY"
}
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"stripe": {
"command": "npx",
"args": [
"-y",
"@stripe/agent-toolkit"
],
"env": {
"STRIPE_SECRET_KEY": "sk_test_YOUR_KEY"
}
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"stripe": {
"command": "npx",
"args": [
"-y",
"@stripe/agent-toolkit"
],
"env": {
"STRIPE_SECRET_KEY": "sk_test_YOUR_KEY"
}
}
}
}
}