Skip to content
MCP-Bridge
Finance & Payments

Stripe API Claude Desktop Config

Add the Stripe API MCP server to Claude Desktop with this ready-to-use configuration.

Setup Instructions

  1. Open Claude Desktop
  2. Go to Settings → Developer → Edit Config → claude_desktop_config.json
  3. Paste the JSON below into the file
  4. Set your API Key in the env section
  5. 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_KEY

Replace sk_live_... with your actual stripe api key

Endpoints

GET/v1/charges

List all charges

POST/v1/charges

Create a charge

GET/v1/customers

List all customers

POST/v1/customers

Create a customer