Skip to content
VS Code

mcp stripe for VS Code

io.github.codespar/mcp-stripe

MCP server for Stripe — global payments API (PaymentIntents, Checkout, Billing, Refunds)

client:VS Code transport:stdio runtime:npm

Install mcp stripe in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "stripe-secret-key",
      "description": "STRIPE_SECRET_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "stripe-api-version",
      "description": "STRIPE_API_VERSION",
      "password": true
    }
  ],
  "servers": {
    "mcp-stripe": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-stripe"
      ],
      "env": {
        "STRIPE_SECRET_KEY": "${input:stripe-secret-key}",
        "STRIPE_API_VERSION": "${input:stripe-api-version}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp stripe in other clients