Skip to content
VS Code

skylos for VS Code

io.github.duriantaco/skylos

Dead code, security, secrets detection and code quality for Python, TypeScript, Go.

client:VS Code transport:stdio runtime:pypi

Install skylos in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "skylos-api-key",
      "description": "SKYLOS_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "skylos": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "skylos"
      ],
      "env": {
        "SKYLOS_API_KEY": "${input:skylos-api-key}"
      }
    }
  }
}

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

skylos in other clients