Skip to content

Instantly share code, notes, and snippets.

@burkeholland
Created June 9, 2025 14:41
Show Gist options
  • Save burkeholland/72db7dc37bc176d29f7f4058728e0d35 to your computer and use it in GitHub Desktop.
Save burkeholland/72db7dc37bc176d29f7f4058728e0d35 to your computer and use it in GitHub Desktop.
Stripe MCP Server Install Buttons

One-click install buttons for Stripe MCP Sever in VS Code

These buttons will add the following configuration to VS Code...

{
  "command": "npx",
  "args": [
    "-y",
    "@stripe/mcp",
    "--tools=all"
  ],
  "env": {
    "STRIPE_SECRET_KEY": "${input:stripe_secret_key}"
  },
  "inputs": [
    {
      "type": "promptString",
      "id": "stripe_secret_key",
      "description": "Stripe secret API key",
      "password": true
    }
  ]
}

Install with NPX in VS Code

Install with NPX in VS Code Insiders

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment