Skip to content
VS Code

canicode for VS Code

io.github.let-sunny/canicode

Analyze Figma designs for dev & AI readiness. 39 rules, scoring, HTML reports.

client:VS Code transport:stdio runtime:npm

Install canicode in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "figma-token",
      "description": "FIGMA_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "canicode": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "canicode"
      ],
      "env": {
        "FIGMA_TOKEN": "${input:figma-token}"
      }
    }
  }
}

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

canicode in other clients