Skip to content
VS Code

syke for VS Code

io.github.khalomsky/syke

AI code impact analysis — dependency graphs, cascade detection, and build gates for AI agents

client:VS Code transport:stdio runtime:npm

Install syke in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "syke-license-key",
      "description": "SYKE_LICENSE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gemini-key",
      "description": "GEMINI_KEY",
      "password": true
    }
  ],
  "servers": {
    "syke": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@syke1/mcp-server"
      ],
      "env": {
        "SYKE_LICENSE_KEY": "${input:syke-license-key}",
        "GEMINI_KEY": "${input:gemini-key}"
      }
    }
  }
}

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

syke in other clients