Skip to content
VS Code

stripe analytics for VS Code

io.github.lordbasilaiassistant-sudo/stripe-analytics

Stripe analytics — revenue, customers, subscriptions, refunds, churn from Claude.

client:VS Code transport:stdio runtime:npm

Install stripe analytics in VS Code

.vscode/mcp.json

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

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

stripe analytics in other clients