Skip to content
VS Code

Featureflip for VS Code

io.github.canopy-labs/featureflip

Manage Featureflip feature flags, targeting and rollouts from AI agents and editors.

client:VS Code transport:stdio runtime:npm

Install Featureflip in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "featureflip-token",
      "description": "FEATUREFLIP_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "featureflip-api-url",
      "description": "FEATUREFLIP_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "featureflip-org",
      "description": "FEATUREFLIP_ORG",
      "password": true
    }
  ],
  "servers": {
    "featureflip": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@featureflip/mcp"
      ],
      "env": {
        "FEATUREFLIP_TOKEN": "${input:featureflip-token}",
        "FEATUREFLIP_API_URL": "${input:featureflip-api-url}",
        "FEATUREFLIP_ORG": "${input:featureflip-org}"
      }
    }
  }
}

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

Featureflip in other clients