Stripe API Claude Desktop Config
Add the Stripe API MCP server to Claude Desktop with this ready-to-use configuration.
Setup Instructions
- Open Claude Desktop
- Go to Settings → Developer → Edit Config →
claude_desktop_config.json - Paste the JSON below into the file
- Set your API Key in the
envsection - Restart Claude Desktop
Configuration JSON
Copy the entire block into your claude_desktop_config.json
{
"mcpServers": {
"stripe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-stripe"
],
"env": {
"STRIPE_API_KEY": "sk_live_..."
}
}
}
}Environment Variables
STRIPE_API_KEYReplace sk_live_... with your actual stripe api key
Endpoints
GET
/v1/chargesList all charges
POST
/v1/chargesCreate a charge
GET
/v1/customersList all customers
POST
/v1/customersCreate a customer