Skip to content
VS Code

Splera for VS Code

io.github.sohaibt/splera

A/B testing for vibe coders: create, track, and ship experiments from your AI coding agent.

client:VS Code transport:stdio runtime:npm

Install Splera in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "splera-api-key",
      "description": "SPLERA_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "splera-api-url",
      "description": "SPLERA_API_URL",
      "password": true
    }
  ],
  "servers": {
    "splera": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "splera-mcp"
      ],
      "env": {
        "SPLERA_API_KEY": "${input:splera-api-key}",
        "SPLERA_API_URL": "${input:splera-api-url}"
      }
    }
  }
}

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

Splera in other clients