Stripe
OfficialPayment processing and financial infrastructure tools.
Provider:Stripe
Category:Payments
Installation
Command Line
npx create-stripe-appConfiguration
Add this configuration to your MCP settings file (usually mcp.json or your IDE's MCP configuration):
JSON Configuration
{
"mcpServers": {
"stripe": {
"command": "npx",
"args": [
"-y",
"stripe-mcp"
],
"env": {
"STRIPE_SECRET_KEY": "<your-stripe-secret-key>",
"STRIPE_PUBLISHABLE_KEY": "<your-stripe-publishable-key>"
}
}
}
}