Home/Servers/Stripe MCP Server

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"
        }
      }
    }
  }
}
โ† Back to all servers