Skip to content
VS Code

RetentionCheck for VS Code

io.github.brianfofficial/retentioncheck-mcp-server

Pull churn from Stripe, Postgres, MySQL, or pasted feedback. AI-ranked drivers + fixes.

client:VS Code transport:stdio runtime:npm

Install RetentionCheck in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "stripe-secret-key",
      "description": "STRIPE_SECRET_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "postgres-url",
      "description": "POSTGRES_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mysql-url",
      "description": "MYSQL_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "retentioncheck-telemetry",
      "description": "RETENTIONCHECK_TELEMETRY",
      "password": true
    }
  ],
  "servers": {
    "retentioncheck-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@retentioncheck/mcp-server"
      ],
      "env": {
        "ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
        "STRIPE_SECRET_KEY": "${input:stripe-secret-key}",
        "POSTGRES_URL": "${input:postgres-url}",
        "MYSQL_URL": "${input:mysql-url}",
        "RETENTIONCHECK_TELEMETRY": "${input:retentioncheck-telemetry}"
      }
    }
  }
}

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

RetentionCheck in other clients